Guest User

Untitled

a guest
Jan 24th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. add_filter( 'register_post_type_args', function ( $args, $post_type ) {
  2. if ( $post_type == "sub" ) {
  3. $args['show_in_menu'] = 'edit.php?post_type=top';
  4. $args['labels']['all_items'] = __( 'All Sub Items', 'my-text-domain' );
  5. }
  6. return $args;
  7. }, 11, 2 );
Add Comment
Please, Sign In to add comment