This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// ADD THIS CODE IN FUNCTION.PHP FILE. | |
add_action( 'add_meta_boxes', 'cd_meta_box_add' ); | |
function cd_meta_box_add() | |
{ | |
//Replace with your Template file | |
if ( 'home.php' == get_post_meta( $post->ID, '_wp_page_template', true ) ) { | |
add_meta_box( 'my-meta-box-id', 'My First Meta Box', 'cd_meta_box_cb', 'page', 'normal', 'high' ); |