Skip to content

Instantly share code, notes, and snippets.

@caercam
Created February 9, 2016 18:55
Show Gist options
  • Save caercam/229059b72e09c3aad65c to your computer and use it in GitHub Desktop.
Save caercam/229059b72e09c3aad65c to your computer and use it in GitHub Desktop.
WPMovieLibrary duplicate movie menu fix
<?php
function _alx_movie_duplicate_menu_fix( $args, $post_type ) {
if ( 'movie' != $post_type ) {
return $args;
}
$args['show_in_menu'] = false;
return $args;
}
add_filter( 'register_post_type_args', '_alx_movie_duplicate_menu_fix', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment