bishawjit-das
10/19/2015 - 6:31 AM

Adding wordpress metabox on specific template page

Adding wordpress metabox on specific template page

function custom_add_meta_boxes_page() {
    global $post;
    if ( 'foobar.php' == get_post_meta( $post->ID, '_wp_page_template', true ) ) {
        add_meta_box( $args );
    }
}
add_action( 'add_meta_boxes_page', 'custom_add_meta_boxes_page' );