treehouse : what would you like to learn today?
Web Design Web Development iOS Development

WordPress code help

  • 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' );
    }



    I have tried the name of my page template, the title of the page both upper and lower case. Nothing seems to be working. Anyone got any idea?
  • thanks for the link SgtLegend. That did the trick.