Created
October 27, 2011 21:53
-
-
Save billerickson/1320990 to your computer and use it in GitHub Desktop.
Limit Gallery Metabox to Amenities Page Template
This file contains hidden or 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 | |
/** | |
* 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