Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created October 27, 2011 21:53
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/1320990 to your computer and use it in GitHub Desktop.
Save billerickson/1320990 to your computer and use it in GitHub Desktop.
Limit Gallery Metabox to Amenities Page Template
<?php
/**
* Limit Gallery Metabox to Amenities Page Template
* @author Bill Erickson
* @link http://www.wordpress.org/extend/plugins/gallery-metabox
* @since 1.0
*
* @param bool display metabox
* @param string post ID
* @return bool display metabox
*/
function be_gallery_metabox_on_amenities( $true, $post_id ) {
$current_template = get_post_meta( $post_id, '_wp_page_template', true );
if( $current_template == 'template-amenities.php' )
return true;
else
return false;
}
add_filter( 'be_gallery_metabox_limit', 'be_gallery_metabox_on_amenities', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment