CyberShot says

I am working on adding a custom meta box to a page. I got it displaying fine. My problem is that I only want the meta box to display on a particular page which just happens to be a template. I tried is_page_template() and is_page but everytime I add the conditional, the meta box doesn’t show. I am doing it like so

if( is_page('home')){
 add_meta_box( 'locationFinder', 'Location Finder', 'cd_meta_box_cb', 'page', 'normal', 'high' ); 
}

Neither function in the if statement is working. Any ideas?

4 months ago