When I try to add a blog posts widget to my homepage, it totally screws my Yoast SEO titles and meta description and I can’t change it back.
How do I fix that?
Hi bigmarvloyal!
Please try adding following code to Functions.php file in Appearance > Editor
add_action('init','avia_remove_yoast_filter');
function avia_remove_yoast_filter()
{
remove_filter('wpseo_pre_analysis_post_content','avia_wpseo_pre_analysis_post_content_fix', 10, 1);
remove_filter('wpseo_video_index_content','avia_wpseo_video_content_fix', 10, 2);
}
Best regards,
Yigit