Skip to content

Instantly share code, notes, and snippets.

@codearachnid
Created September 6, 2012 16:23
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 codearachnid/3658118 to your computer and use it in GitHub Desktop.
Save codearachnid/3658118 to your computer and use it in GitHub Desktop.
move Tri.be's menue lower in the admin sidebar
<?php
// move Tri.be's menue lower in the admin sidebar
add_action('registered_post_type', 'tribe_move_events_menu', 10, 2);
function tribe_move_events_menu( $post_type, $args){
if( $post_type == TribeEvents::POSTTYPE ) {
$args->menu_position = 100;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment