add_section('bw_pfn_footer', array( 'title' => esc_html__('Footer', 'bw-featuredimage-portfolio'), 'description' => sprintf( esc_html__('Custmize footer headings and message', 'bw-featuredimage-portfolio') ), 'priority' => 130, )); // Context $wp_customize->add_setting('bw_pfn_context', array( 'default' => esc_html__('Context is everything', 'bw-featuredimage-portfolio'), 'type' => 'theme_mod', 'sanitize_callback' => 'bw_featuredimage_portfolio_senitize_text', 'capability' => 'edit_theme_options', )); $wp_customize->add_control( 'bw_pfn_context', array( 'label' => esc_html__('Context is everything', 'bw-featuredimage-portfolio'), 'section' => 'bw_pfn_footer', 'settings'=> 'bw_pfn_context', 'priority' => 1, )); // Context content $wp_customize->add_setting('bw_pfn_context_content', array( 'default' => esc_html__('It’s so nice to finally meet you in person! After graduating from university, I worked in sales for a few years. But three years ago, I started working in digital media marketing and my experience in sales definitely helped. I was able to help the company consistently hit its targets and grow their brand in the industry. I know that you’re looking to grow your influence online, and that’s why I applied for the position…', 'bw-featuredimage-portfolio'), 'type' => 'theme_mod', 'sanitize_callback' => 'bw_featuredimage_portfolio_senitize_text', 'capability' => 'edit_theme_options', )); $wp_customize->add_control( 'bw_pfn_context_content', array( 'label' => esc_html__('Message ', 'bw-featuredimage-portfolio'), 'type' => 'textarea', 'section' => 'bw_pfn_footer', 'settings'=> 'bw_pfn_context_content', 'priority' => 1, )); // BLOG POSTS $wp_customize->add_setting('bw_pfn_blogpost', array( 'default' => esc_html__('Blog posts', 'bw-featuredimage-portfolio'), 'type' => 'theme_mod', 'sanitize_callback' => 'bw_featuredimage_portfolio_senitize_text', 'capability' => 'edit_theme_options', )); $wp_customize->add_control( 'bw_pfn_blogpost', array( 'label' => esc_html__('Blog post', 'bw-featuredimage-portfolio'), 'section' => 'bw_pfn_footer', 'settings'=> 'bw_pfn_blogpost', 'priority' => 1, )); // POPULAR TAGS $wp_customize->add_setting('bw_pfn_tags', array( 'default' => esc_html__('Popular tags', 'bw-featuredimage-portfolio'), 'type' => 'theme_mod', 'sanitize_callback' => 'bw_featuredimage_portfolio_senitize_text', 'capability' => 'edit_theme_options', )); $wp_customize->add_control( 'bw_pfn_tags', array( 'label' => esc_html__('Popular tags', 'bw-featuredimage-portfolio'), 'section' => 'bw_pfn_footer', 'settings'=> 'bw_pfn_tags', 'priority' => 1, )); }add_action('customize_register','bw_pfn_customize_footer');