When user is logged in WP add in its footer this CSS: <link rel="stylesheet" id='open-sans-css' href="https://fonts.googleapis.com/css?family=Open+Sans...." type="text/css" media="all" /> That style is not registered inside my theme, if I...
  • May 22, 2022
  • 0 Comments
I have a custom template and I inserted the following snippet to get rid of the admin bar for the page: function hide_admin_bar(){ return false; } add_filter( 'show_admin_bar', 'hide_admin_bar'...
  • May 19, 2022
  • 0 Comments
I want to hide some menus on admin panel: Appearance, Plugins, and Tools. How to hide it without plugin? And how can I un-hide them later easily? 3 Answers...
  • May 13, 2022
  • 0 Comments
I have custom CSS for the login and admin pages. Is it OK to add it as I’ve done below, or is there a better alternative? function custom_admin_css() {...
  • May 7, 2022
  • 0 Comments