0
Remove
I would like to remove the post-type Articles from the Wordpress menu I have researched some possibilities but nothing has taken effect.
I tried creating the method unregister_post_type
in this way:
function unregister_post_type( $post_type ) {
global $wp_post_types;
if ( isset( $wp_post_types[ $post_type ] ) ) {
unset( $wp_post_types[ $post_type ] );
return true;
}
return false;
}
Glad you could help, man.
– Lollipop