Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created December 18, 2011 15:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save billerickson/1493758 to your computer and use it in GitHub Desktop.
Save billerickson/1493758 to your computer and use it in GitHub Desktop.
Gallery metabox - custom post types
<?php
/**
* Gallery Metabox - Only show on 'page' and 'rotator' post types
* @author Bill Erickson
* @link http://www.wordpress.org/extend/plugins/gallery-metabox
* @link http://www.billerickson.net/code/gallery-metabox-custom-post-types
* @since 1.0
*
* @param array $post_types
* @return array
*/
function be_gallery_metabox_page_and_rotator( $post_types ) {
return array( 'page', 'rotator' );
}
add_action( 'be_gallery_metabox_post_types', 'be_gallery_metabox_page_and_rotator' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment