Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created November 15, 2011 20:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/1368319 to your computer and use it in GitHub Desktop.
Save billerickson/1368319 to your computer and use it in GitHub Desktop.
Limit Gallery Metabox to Specific Page
<?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 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment