Created
December 18, 2011 15:52
-
-
Save billerickson/1493758 to your computer and use it in GitHub Desktop.
Gallery metabox - custom post types
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
<?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