Wordpress Dashboard, remove Favorite Action Dropdown


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. // Remove the Favorite Action Dropdown
  2. function remove_favorite_actions($actions) {
  3. remove_action('wp_head', 'favorite_actions');
  4. }
  5. add_filter('favorite_actions', 'remove_favorite_actions');

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.