/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// Remove the Favorite Action Dropdown function remove_favorite_actions($actions) { remove_action('wp_head', 'favorite_actions'); } add_filter('favorite_actions', 'remove_favorite_actions');