Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function custom_admin_body_class( $classes ) {
- global $pagenow;
- if ( $pagenow === 'post.php' || $pagenow === 'post-new.php' ) {
- if ( current_user_can( 'manage_options' ) ) {
- $classes .= ' admin-roles';
- }
- }
- return $classes;
- }
- add_filter( 'admin_body_class', 'custom_admin_body_class' );
- add_action(
- 'admin_print_styles',
- function () {
- ?>
- <style type="text/css" id="customn-gutenberg-style">
- #jnews_section_jnews_override_counter {
- display: none !important;;
- }
- .admin-roles #jnews_section_jnews_override_counter {
- display: flex !important;;
- }
- </style>
- <?php
- },
- 99
- );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement