Aurangajeb

Add custom CSS to hide the WPERP admin area footer message

Dec 23rd, 2019
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. /* Add custom CSS to hide the WPERP admin area footer message */
  2.  
  3. add_action('admin_head', 'my_custom_admin_css');
  4.  
  5. function my_custom_admin_css() {
  6. echo '<style>
  7. #footer-left {
  8. display: none;
  9. }
  10. </style>';
  11. }
Advertisement
Add Comment
Please, Sign In to add comment