<?php | |
/** | |
* Limit Gallery Metabox to Specific Page | |
* @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_specific_page( $true, $post_id ) { | |
return '10' == $post_id; | |
} | |
add_filter( 'be_gallery_metabox_limit', 'be_gallery_metabox_on_specific_page', 10, 2 ); |
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