get_stylesheet_directory_uri( ) . '/img/header.jpg',
'width' => 2000,
'height' => 1200,
'flex-height' => true,
'video' => false,
) ) );
}
add_action( 'bulk_after_header_image_title', 'bulk_blog_generate_arrow' );
add_action( 'bulk_after_post_meta', 'bulk_blog_generate_arrow' );
add_action( 'bulk_after_page_title', 'bulk_blog_generate_arrow' );
/**
* Build scroll to content arrow
*/
function bulk_blog_generate_arrow() {
?>
remove_section( 'customizer-plugin-notice-section' );
$wp_customize->remove_section( 'theme_demo_content' );
}
add_action( 'customize_register', 'bulk_blog_customize_register', 11 );
/**
* Remove unused tabs
*/
add_action( 'admin_init', 'bulk_blog_remove_action');
function bulk_blog_remove_action() {
remove_action( 'bulk_recommended_title', 'bulk_recommended_title_construct' );
remove_action( 'bulk_import_title', 'bulk_recommended_import_construct' );
}
/**
* Remove parent theme function
*/
function bulk_get_actions_required() {
// Not needed for this child theme
};