remove_section( 'upgrade_aneeq_premium' ); //Modify this line as needed
$wp_customize->remove_section( 'aneeq_general_settings' ); //Modify this line as needed
$wp_customize->remove_section( 'aneeq_header_option' ); //Modify this line as needed
$wp_customize->remove_section( 'aneeq_slider_option' ); //Modify this line as needed
$wp_customize->remove_section( 'aneeq_service_option' ); //Modify this line as needed
$wp_customize->remove_section( 'aneeq_blog_option' ); //Modify this line as needed
$wp_customize->remove_section( 'aneeq_woocommerce_settings' ); //Modify this line as needed
$wp_customize->remove_section( 'aneeq_testimonial_settings' ); //Modify this line as needed
$wp_customize->remove_section( 'aneeq_footer_settings' ); //Modify this line as needed
//Fetch customizer files
$dir = get_stylesheet_directory() . '/include/customizer/';
// Customizer files array
$files = array(
'slider',
'service',
'funfact',
'portfolio',
'blog'
);
//calling files
foreach ( $files as $key ) { require_once( $dir . $key .'.php' ); }
}
add_action( 'customize_register', 'businessblogs_customize_register', 14 );
/**
* Skip Link
*
*/
add_action('wp_head', 'businessblogs_skip_to_content');
function businessblogs_skip_to_content(){
echo ''. esc_html__( 'Skip to content', 'businessblogs' ) .'';
}
/**
* Fix skip link focus in IE11.
*
* This does not enqueue the script because it is tiny and because it is only for IE11,
* thus it does not warrant having an entire dedicated blocking script being loaded.
*
* @link https://git.io/vWdr2
*/
function businessblogs_skip_link_focus_fix() {
// The following is minified via `terser --compress --mangle -- js/skip-link-focus-fix.js`.
?>