Skip to content

Instantly share code, notes, and snippets.

@davidperezgar
Forked from billerickson/gist:1493758
Created December 3, 2015 13:03
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 davidperezgar/6bb9d7f18b1ace430dbc to your computer and use it in GitHub Desktop.
Save davidperezgar/6bb9d7f18b1ace430dbc 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