/** * Starter Content Compatibility. * * @since 4.0.0 * @package Astra */ /** * Class Astre_Starter_Content */ class Astra_Starter_Content { public const HOME_SLUG = 'home'; public const ABOUT_SLUG = '#about'; public const SERVICES_SLUG = '#services'; public const REVIEWS_SLUG = '#reviews'; public const WHY_US_SLUG = '#whyus'; public const CONTACT_SLUG = '#contact'; /** * Constructor */ public function __construct() { $is_fresh_site = get_option( 'fresh_site' ); if ( ! $is_fresh_site ) { return; } // Adding post meta and inserting post. add_action( 'wp_insert_post', array( $this, 'register_listener', ), 3, 99 ); // Save astra settings into database. add_action( 'customize_save_after', array( $this, 'save_astra_settings', ), 10, 3 ); if ( ! is_customize_preview() ) { return; } // preview customizer values. add_filter( 'default_post_metadata', array( $this, 'starter_meta' ), 99, 3 ); add_filter( 'astra_theme_defaults', array( $this, 'theme_defaults' ) ); add_filter( 'astra_global_color_palette', array( $this, 'theme_color_palettes_defaults' ) ); } /** * Load default starter meta. * * @since 4.0.2 * @param mixed $value Value. * @param int $post_id Post id. * @param string $meta_key Meta key. * * @return string Meta value. */ public function starter_meta( $value, $post_id, $meta_key ) { if ( get_post_type( $post_id ) !== 'page' ) { return $value; } if ( 'site-content-layout' === $meta_key ) { return 'plain-container'; } if ( 'theme-transparent-header-meta' === $meta_key ) { return 'enabled'; } if ( 'site-sidebar-layout' === $meta_key ) { return 'no-sidebar'; } if ( 'site-post-title' === $meta_key ) { return 'disabled'; } return $value; } /** * Register listener to insert post. * * @since 4.0.0 * @param int $post_ID Post Id. * @param \WP_Post $post Post object. * @param bool $update Is update. */ public function register_listener( $post_ID, $post, $update ) { if ( $update ) { return; } $custom_draft_post_name = get_post_meta( $post_ID, '_customize_draft_post_name', true ); $is_from_starter_content = ! empty( $custom_draft_post_name ); if ( ! $is_from_starter_content ) { return; } if ( 'page' === $post->post_type ) { update_post_meta( $post_ID, 'site-content-layout', 'plain-container' ); update_post_meta( $post_ID, 'theme-transparent-header-meta', 'enabled' ); update_post_meta( $post_ID, 'site-sidebar-layout', 'no-sidebar' ); update_post_meta( $post_ID, 'site-post-title', 'disabled' ); } } /** * Get customizer json * * @since 4.0.0 * @return mixed value. */ public function get_customizer_json() { try { $request = wp_remote_get( ASTRA_THEME_URI . 'inc/compatibility/starter-content/astra-settings-export.json' ); } catch ( Exception $ex ) { $request = null; } if ( is_wp_error( $request ) ) { return false; // Bail early. } // @codingStandardsIgnoreStart /** * @psalm-suppress PossiblyNullReference * @psalm-suppress UndefinedMethod * @psalm-suppress PossiblyNullArrayAccess * @psalm-suppress PossiblyNullArgument * @psalm-suppress InvalidScalarArgument */ return json_decode( $request['body'], 1 ); // @codingStandardsIgnoreEnd } /** * Save Astra customizer settings into database. * * @since 4.0.0 */ public function save_astra_settings() { $settings = self::get_customizer_json(); // Delete existing dynamic CSS cache. delete_option( 'astra-settings' ); if ( ! empty( $settings['customizer-settings'] ) ) { foreach ( $settings['customizer-settings'] as $option => $value ) { update_option( $option, $value ); } } } /** * Load default astra settings. * * @since 4.0.0 * @param mixed $defaults defaults. * @return mixed value. */ public function theme_defaults( $defaults ) { $json = ''; $settings = self::get_customizer_json(); if ( ! empty( $settings['customizer-settings'] ) ) { $json = $settings['customizer-settings']['astra-settings']; } return $json ? $json : $defaults; } /** * Load default color palettes. * * @since 4.0.0 * @param mixed $defaults defaults. * @return mixed value. */ public function theme_color_palettes_defaults( $defaults ) { $json = ''; $settings = self::get_customizer_json(); if ( ! empty( $settings['customizer-settings'] ) ) { $json = $settings['customizer-settings']['astra-color-palettes']; } return $json ? $json : $defaults; } /** * Return starter content definition. * * @return mixed|void * @since 4.0.0 */ public function get() { $nav_items_header = array( 'home' => array( 'type' => 'post_type', 'object' => 'page', 'object_id' => '{{' . self::HOME_SLUG . '}}', ), 'about' => array( 'title' => __( 'Services', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::SERVICES_SLUG . '}}', ), 'services' => array( 'title' => __( 'About', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::ABOUT_SLUG . '}}', ), 'reviews' => array( 'title' => __( 'Reviews', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::REVIEWS_SLUG . '}}', ), 'faq' => array( 'title' => __( 'Why Us', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::WHY_US_SLUG . '}}', ), 'contact' => array( 'title' => __( 'Contact', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::CONTACT_SLUG . '}}', ), ); $content = array( 'attachments' => array( 'logo' => array( 'post_title' => _x( 'Logo', 'Theme starter content', 'astra' ), 'file' => 'inc/assets/images/starter-content/logo.png', ), ), 'theme_mods' => array( 'custom_logo' => '{{logo}}', ), 'nav_menus' => array( 'primary' => array( 'name' => esc_html__( 'Primary', 'astra' ), 'items' => $nav_items_header, ), 'mobile_menu' => array( 'name' => esc_html__( 'Primary', 'astra' ), 'items' => $nav_items_header, ), ), 'options' => array( 'page_on_front' => '{{' . self::HOME_SLUG . '}}', 'show_on_front' => 'page', ), 'posts' => array( self::HOME_SLUG => require ASTRA_THEME_DIR . 'inc/compatibility/starter-content/home.php', // PHPCS:ignore WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound ), ); return apply_filters( 'astra_starter_content', $content ); } } Top 10 Local Markets in India You Must Explore - Bun Apeti - Burgers and more

Top 10 Local Markets in India You Must Explore





Top 10 Local Markets in India You Must Explore

Top 10 Local Markets in India You Must Explore

India is a treasure trove of vibrant local markets where culture, colors, and aromas collide in the most fascinating way. From bustling streets to traditional bazaars, these markets showcase everything from exquisite textiles to handcrafted jewelry, street food, and unique souvenirs. Each market reflects its city’s heritage and offers an immersive shopping experience where tourists and locals alike can explore, bargain, and discover hidden gems. Whether seeking fashion, handicrafts, or authentic local cuisine, these ten iconic markets provide a blend of shopping, culture, and adventure, making every visit memorable and enriching.

Linking Road Market

Mumbai’s Linking Road Market is a lively hub for fashion and accessories, famous for its wide selection of shoes, clothes, and trendy items. Shoppers enjoy bargaining and exploring countless stalls, each offering unique finds. Street vendors serve local favorites like vada pav and pav bhaji, enhancing the sensory experience. This market attracts both tourists and locals, blending urban style with traditional street market energy. From casual outfits to statement pieces, Linking Road provides a shopping adventure full of excitement, color, and local flair, making it one of Mumbai’s most visited and loved markets.

Visit Linking Road Market

Mangaldas Market

Ahmedabad’s Mangaldas Market is renowned for its colorful textiles and handcrafted fabrics. Visitors can explore stalls filled with sarees, embroidery, and woven fabrics created by skilled artisans. Vendors share stories behind each fabric, providing insight into traditional weaving and design techniques. Street food stalls offer local snacks, keeping shoppers energized while they browse. Designers, tourists, and locals alike visit Mangaldas Market to experience India’s textile heritage firsthand. The market’s vibrant environment, artisanal charm, and lively streets make it a perfect destination for those seeking authentic fabrics, cultural immersion, and unique shopping experiences.

Visit Mangaldas Market

Manish Market

Manish Market is a bustling shopping area offering clothing, accessories, and household goods. Stalls line the streets with colorful merchandise, creating a lively and energetic atmosphere. Visitors enjoy bargaining for fashion items and discovering everyday essentials. Street vendors provide snacks to enhance the shopping experience, making it both fun and convenient. Locals frequent the market for practical purchases, while tourists seek unique finds. Manish Market offers a genuine glimpse into traditional Indian market life, combining commerce, culture, and community energy, ensuring visitors have a memorable and authentic shopping adventure.

Visit Manish Market

Janpath Market

Delhi’s Janpath Market is famous for handicrafts, ethnic clothing, and souvenirs. Stalls feature vibrant scarves, jewelry, garments, and artisan-made products. Tourists and locals enjoy bargaining while exploring the market’s lively streets. Street food vendors provide snacks that complement the shopping experience. The market is a cultural hub, reflecting India’s traditional craftsmanship and Delhi’s vibrant energy. Visitors can discover authentic handicrafts, unique gifts, and memorable souvenirs. Janpath Market offers not only shopping but an immersive experience of Delhi’s local life, artisan culture, and colorful marketplace charm that appeals to everyone seeking authenticity.

Visit Janpath Market

Chandni Chowk Market

Chandni Chowk Market in Delhi is one of India’s oldest and most iconic markets. Its narrow lanes are packed with textiles, jewelry, electronics, and spices, creating a sensory-rich environment. Street vendors serve local delicacies like chaat and parathas. Visitors enjoy bargaining and exploring hidden gems, experiencing the market’s historic charm. Chandni Chowk combines commerce, culture, and culinary delights, making it a favorite destination for tourists and locals. Every visit offers an immersive experience of Delhi’s rich heritage, bustling energy, and diverse shopping options, making Chandni Chowk an unforgettable marketplace adventure.

Visit Chandni Chowk Market

Tibetan Market

Delhi’s Tibetan Market offers a unique shopping experience with handicrafts, jewelry, clothing, and cultural artifacts. Visitors can interact with vendors and learn about the traditions behind each product. Colorful stalls display prayer flags, handmade items, and artisan creations. Street food enhances the lively experience, allowing shoppers to enjoy local flavors while browsing. Tourists and locals appreciate the market’s cultural richness and relaxed yet vibrant atmosphere. Tibetan Market is ideal for those seeking authentic Tibetan crafts, souvenirs, and a glimpse into traditional artistry, blending shopping with cultural exploration in the heart of Delhi.

Visit Tibetan Market

Alaknanda Market

Alaknanda Market in Delhi is a neighborhood bazaar known for fresh produce, garments, and household items. Vibrant stalls and friendly vendors create a welcoming atmosphere for locals and visitors alike. Shoppers can explore fruits, vegetables, clothes, and daily essentials while enjoying street food offerings. The market reflects daily Indian life, providing an authentic local shopping experience. Its lively streets, community feel, and variety of products make it a charming destination for tourists and residents. Alaknanda Market offers a glimpse into Delhi’s culture, combining practicality with cultural immersion for a complete marketplace adventure.

Visit Alaknanda Market

Avadh Textile Market

Lucknow’s Avadh Textile Market is famous for traditional fabrics such as chikankari, silk, and cotton. Colorful stalls display intricately embroidered textiles crafted by skilled artisans. Vendors provide insights into fabric origins and techniques, enriching the shopping experience. Tourists and locals explore the market for authentic fabrics, unique home décor, and clothing. Street food stalls offer local snacks while exploring. Avadh Textile Market blends India’s rich textile heritage with a lively shopping environment, attracting shoppers seeking quality materials, craftsmanship, and cultural immersion. Its energetic ambiance and artisanal treasures make it a must-visit market in Lucknow.

Visit Avadh Textile Market

Anjuna Flea Market

Goa’s Anjuna Flea Market is a weekly vibrant market offering handmade crafts, clothing, jewelry, and souvenirs. Colorful stalls, lively music, and street food create a festive atmosphere for shoppers. Visitors can interact with artisans, learning about their craft while browsing unique items. Tourists and locals enjoy exploring the creative stalls, soaking in the market’s lively, fun energy. Anjuna Flea Market provides a mix of shopping, cultural experiences, and entertainment, making it a memorable destination for all visitors. Its vibrant colors, unique products, and lively streets make it an iconic Goan market experience.

Visit Anjuna Flea Market

Bandra Hill Road Market

Mumbai’s Bandra Hill Road Market is a trendy hub for fashion, accessories, and lifestyle products. Stalls and boutiques line the streets, offering unique merchandise and popular brands. Street vendors provide local snacks, enhancing the shopping experience. Visitors can bargain while exploring a wide variety of goods. The market’s lively atmosphere, mix of modern trends, and traditional street market charm attract locals and tourists alike. Bandra Hill Road Market is a perfect destination for fashion lovers, food enthusiasts, and shoppers seeking a vibrant and culturally rich Mumbai marketplace experience that combines style, energy, and local flavor.

Visit Bandra Hill Road Market


/** * Template part for displaying the footer info. * * @link https://codex.wordpress.org/Template_Hierarchy * * @package Astra * @since 1.0.0 */ ?>
Scroll to Top