Using this code you can show WordPress meta box for a specific template selected. To do this add this code in to your themes function.php file <?php add_action( ‘admin_head-post.php’, ‘metabox_switcher’ ); add_action( ‘admin_head-post-new.php’, ‘metabox_switcher’ ); function metabox_switcher( $post ){ #Locate the ID of your metabox with Developer tools $metabox_selector_id = ‘about-banner-image-meta’; echo ‘ <style type=”text/css”> […]