Skip to content

Instantly share code, notes, and snippets.

@thomasplevy
Created August 9, 2017 19:45
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 thomasplevy/0b8a8576801176c2ab6fb9dcb203078f to your computer and use it in GitHub Desktop.
Save thomasplevy/0b8a8576801176c2ab6fb9dcb203078f to your computer and use it in GitHub Desktop.
<?php // don't copy this line to your functions.php file
/**
* Add LaunchPad Layout Settings to a custom post type
* @param array $post_types array of default post types
* @return array
*/
function add_lp_mb_for_my_post_type( $post_types ) {
$post_types[] = 'my_custom_post_type';
return $post_types;
}
add_filter( 'launchpad_layout_settings_metabox_post_types', 'add_lp_mb_for_my_post_type', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment