Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 556 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 556 Bytes

This repository is DEPRECATED

This repository is deprecated, all development is done at https://github.com/Yoast/yoast-acf-analysis.

ACF Content Analysis for Yoast SEO

This plugin ensures that Yoast SEO analysize all ACF content including FlexiContent and Repeaters

Filters

ysacf_exclude_fields: exclude acf fields from Yoast scoring.

Example: exclude text-color field from Yoast scoring.

add_filter('ysacf_exclude_fields', function(){
    return array(
        'text_color',
    );
});