//* Hide links in Left Menu (for non-admins)
/* This style includes
- Categories link,
- Tags link,
- TablePress extra links
*/
add_action('admin_head', 'jennywren_hide_menu');
function jennywren_hide_menu() {
// Only run if the user is not an admin.
if ( ! current_user_can( 'administrator' ) ) {
echo '<style>
#menu-posts ul li:nth-child(4),
#menu-posts ul li:nth-child(5),
#menu-posts ul li:nth-child(6),
#toplevel_page_tablepress ul li:nth-child(4),
#toplevel_page_tablepress ul li:nth-child(5),
#toplevel_page_tablepress ul li:nth-child(6),
#toplevel_page_tablepress ul li:nth-child(7) {
display: none;
}
</style>';
}
}