Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Download the file to drop in your theme's directory here: <a href="https://gist.github.com/792b7aa5b695d1092520" rel="nofollow noreferrer">wp-admin-menu-classes.php</a> and then you might call the functions in your theme's <code>functions.php</code> file:</p> <pre><code> &lt;?php require_once('wp-admin-menu-classes.php'); add_action('admin_menu','my_admin_menu'); function my_admin_menu() { swap_admin_menu_sections('Pages','Posts'); // Swap location of Posts Section with Pages Section rename_admin_menu_section('Media','Photos &amp; Video'); // Rename Media Section to "Photos &amp; Video" delete_admin_menu_section('Links'); // Get rid of Links Section $movie_tags_item_array = get_admin_menu_item_array('Movies','Movie Tags'); // Save off the Movie Tags Menu update_admin_menu_section('Movies',array( // Rename two Movie Menu Items and Delete the Movie Tags Item array('rename-item','item'=&gt;'Movies','new_title'=&gt;'List Movies'), array('rename-item','item'=&gt;'Add New','new_title'=&gt;'Add Movie'), array('delete-item','item'=&gt;'Movie Tags'), )); copy_admin_menu_item('Movies',array('Actors','Add New')); // Copy the 'Add New' over from Actors renamed_admin_menu_item('Movies','Add New','Add Actor'); // Rename copied Actor 'Add New' to 'Add Actor add_admin_menu_item('Movies',array( // (Another way to get a 'Add Actor' Link to a section.) 'title' =&gt; 'Alt Add Actor ', 'slug' =&gt; 'post-new.php?post_type=actor', ), array(// Add Back the Movie Tags at the end. 'where'=&gt;'end' )); add_admin_menu_item('Movies',$movie_tags_item_array,array(// Add Back the Movie Tags at the end. 'where'=&gt;'end' )); delete_admin_menu_section('Actors'); // Finally just get rid of the actors section } </code></pre> <p>OR</p> <p>Try this wordpress plugin </p> <p><a href="http://wordpress.org/plugins/admin-menu-editor/" rel="nofollow noreferrer">http://wordpress.org/plugins/admin-menu-editor/</a></p> <p><img src="https://i.stack.imgur.com/E7Jeb.png" alt="Working Plugin Snapshot"></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload