//* Hide meta on Edit screens (for Contributors)
/* Including
- Divi Builder option,
- Category Add New link
*/
add_action( 'admin_head', 'jennywren_hide_meta' );
function jennywren_hide_meta() {
// Only run if the user is not admin or editor.
if ( ! current_user_can( 'administrator' ) && ! current_user_can('editor') ) {
echo '<style>
.post-type-post .et_pb_toggle_builder_wrapper,
#category-adder
{
display: none;
}
</style>';
}
}