<?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' ); |
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