Screen Options Issue
-
Hello,
today I found the ‘Screen Options’ drop-down menu appears empty on WordPress 5.1. I hope this bug will be fixed soon. Meanwhile I’ve created a temporary fix. Add the following code to thefunctions.php
file:/** * Fix 'Screen Options' issue of WordPress 5.0/5.1 * :: https://css-tricks.com/snippets/wordpress/apply-custom-css-to-admin-area/ * :: https://davidwalsh.name/add-custom-css-wordpress-admin **/ function fix_screen_options_issue_wp5() { echo '<style> form#adv-settings { display: block !important; } </style>'; } add_action('admin_head', 'fix_screen_options_issue_wp5');
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Screen Options Issue’ is closed to new replies.