# Yoast SEO - ACF Content Analysis This plugin ensures that Yoast SEO analysize all ACF content including FlexiContent and Repeaters ## Filters `ysacf_exclude_fields`: exceclude acf fields from Yoast scoring. Example: exceclude text-color field from Yoast scoring. ``` add_filter('ysacf_exclude_fields', function(){ return array( 'text_color', ); }); ```