@annabell_mcdermott
To remove actions from the Yoast SEO plugin, you can simply add the following code to your theme's functions.php file or a custom plugin:
1 2 |
// Remove Yoast SEO actions remove_action('action_name', 'function_name'); |
Replace 'action_name' with the name of the action you want to remove and 'function_name' with the name of the function that is hooked to that action.
You can find a list of available actions in the Yoast SEO plugin by checking their documentation or by looking at the source code of the plugin.
Note: Make sure to always backup your website before making any changes to the code.