ACF Анализа Садржаја за Yoast SEO

Опис

Овај додатак осигурава да Yoast SEO анализира сав ACF садржај укључујући и Флексибилни Садржај и Понављајућа поља.

Yoast SEO for WordPress content and SEO analysis does not take in to account the content of a post’s Advanced Custom Fields. This plugin uses the plugin system of Yoast SEO for WordPress to hook into the analyser in order to add ACF content to the SEO analysis.

This had previously been done by the WordPress SEO ACF Content Analysis plugin but that no longer works with Yoast 3.0. Kudos to ryuheixys, the author of that plugin, for the original idea.

This Plugin is compatible with the free ACF 4 Version as well as with the PRO Version 5. Please be aware that it ignores Pro Add-Ons for Version 4. In that case please upgrade to ACF PRO Version 5.

Ако имате проблеме, молимо Вас предајте их на GitHub-у

Раније зван Yoast ACF Analysis.

Филтери

Уклони одређено поље из резултата

add_filter( 'Yoast\WP\ACF\blacklist_name', function ( $blacklist_name ) {
    $blacklist_name->add( 'my-field-name' );
    return $blacklist_name;
});

Уклони тип поља из резултата

add_filter( 'Yoast\WP\ACF\blacklist_type', function ( $blacklist_type ) {
    // text, image etc
    $blacklist_type->add( 'text' );
    $blacklist_type->add( 'image' );
    return $blacklist_type;
});

Дефиниши специфичну вредност заглавља прилагођеном пољу

add_filter( 'Yoast\WP\ACF\headlines', function ( $headlines ) {
    // value from 1-6, 1=h1, 6=h6
    $headlines['field_591eb45f2be86'] = 3;
    return $headlines;
});

Промени учесталост освежавања

add_filter( 'Yoast\WP\ACF\refresh_rate', function () {
    // Refresh rates in milliseconds
    return 1000;
});

Прегледи

30. мај 2023. 1 одговор
I have finished the Korean translation.I just want to say thank you for developing such a good plugin.And I hope it will be translated into more languages so that many WordPress users can use it conveniently.ACF Content Analysis for Yoast SEO 한국어 번역을 모두 마쳤습니다.좋은 플러그인을 개발해 주어서 고맙다는 인사를 전하고 싶습니다.그리고 보다 많은 언어로 번역되어 많은 워드프레스 사용자들이 편리하게 사용할 수 있기를 바랍니다.
1. септембар 2022.
The docs for this plugin say there is a box in the search appearance tab where you can add 'Custom fields to include in page analysis' but that box is no longer included in the plugin. I've installed it on three sites now, including one with no other plugins installed other than Yoast, so it doesn't look like a compatibility issue. No answers on the plugin support page and Yoast will only look into issues for premium subscribers unfortunately. Very frustrating.
Види свих 35 прегледа

Сарадници и градитељи

„ACF Анализа Садржаја за Yoast SEO“ је софтвер отвореног кода. Следећи људи су допринели овом додатку.

Сарадници

„ACF Анализа Садржаја за Yoast SEO“ је преведен на 20 језика. Хвала преводиоцима за њихове доприносе.

Преведите „ACF Анализа Садржаја за Yoast SEO“ на свој језик.

Заинтересовани сте за градњу?

Прегледајте код, проверите SVN складиште или се пријавите на белешку градње преко RSS-а.

Белешка о изменама

3.1

Објављено 23. маја 2023. године

Побољшања:

  • Побољшава анализу искључујући садржај из URL и поља е-поште.

Отклањања грешака:

  • Fixes a bug where the content in ACF fields was not included in the analysis in Classic editor when WordProof plugin was activated.

Остало:

  • Поставља минималну захтевану верзију Yoast SEO на 20.8.
  • Поставља минималну захтевану верзију ACF на 6.0.0.
  • Поставља минималну подржану верзију Вордпреса на 6.1 и „Тестирано“ до 6.2.
  • Укида компатибилност са PHP 5.6, 7.0 и 7.1.

3.0.1

Објављено 10. децембра 2020. године

Отклањања грешака:

  • Fixes a bug where ACF Analysis would fail on term pages when using WordPress 5.6.

3.0.0

Објављено 29. септембра 2020. године

Отклањања грешака:

  • Fixes a bug where the content of ACF fields wouldn’t be included in the SEO and readability analysis when using the Classic Editor plugin.
  • Fixes a bug where changes to the content of ACF fields wouldn’t trigger a live refresh of the SEO and readability analysis.

Остало:

  • Више не подржава ACF верзије испод 5.7.

2.7.0

Објављено 1. септембра 2020. године

Остало:

  • Компатибилност са Yoast SEO 14.9.

2.6.0

Објављено 4. августа 2020. године

Отклањања грешака:

  • Fixes a bug where the content of ACF blocks in ‘auto’ mode was not taken into account when the block (automatically) switched to preview mode. Props to TimVevida.

2.5.0

Објављено 21. јула 2020. године

Остало:

  • Makes the plugin compatible with JavaScript changes introduced in Yoast SEO 14.6. We used to depend on JavaScript files which aren’t there anymore. We now depend on post-edit.js or term-edit.js.
  • Поставља минимално подржану верзију Yoast SEO на 14.6.

2.4.1

Објављено 10. јула 2020. године

Отклањања грешака:

  • Fixes a bug where an error would be thrown when using the Classic Editor plugin.
  • Поправља грешку приликом које се прилагођена поља више не би анализирала током коришћења додатка Класичног Уређивача

2.4.0

Објављено 4. јула 2020. године

Побољшања:

  • Додата подршка за ACF blocks. Предложио TimVevida.

Остало:

  • Fixes a couple of typos in the code documentation. Props to akkspros.
  • Deprecates Yoast_ACF_Analysis_Facade::get_filter_name(). Use hard-coded hook names instead.
  • Deprecates the yoast-acf-analysis/configfilter hook in favor of theYoast\WP\ACF\config` hook.
  • Deprecates the yoast-acf-analysis/headlines filter hook in favor of the Yoast\WP\ACF\headlines hook.
  • Deprecates the yoast-acf-analysis/blacklist_type filter hook in favor of the Yoast\WP\ACF\blacklist_type hook.
  • Deprecates the yoast-acf-analysis/blacklist_name filter hook in favor of the Yoast\WP\ACF\blacklist_name hook.
  • Deprecates the yoast-acf-analysis/scraper_config filter hook in favor of the Yoast\WP\ACF\scraper_config hook.
  • Deprecates the yoast-acf-analysis/refresh_rate filter hook in favor of the Yoast\WP\ACF\refresh_rate hook.
  • Deprecates the yoast-acf-analysis/field_selectors filter hook in favor of the Yoast\WP\ACF\field_selectors hook.
  • Deprecates the yoast-acf-analysis/field_order filter hook in favor of the Yoast\WP\ACF\field_order hook.

2.3.0

Објављено 15. маја 2019. године

Побољшања:

  • ACF URL fields are now analyzed as links. Props to t49tran.

2.2.0

Објављено 22. јануара 2019. године

Отклањања грешака:

  • Fixes a bug where textarea and non-headline text content would not be wrapped in paragraphs for the analysis. Props skaeser.

Побољшања:

  • Introduces the ‘yoast-acf-analysis/field_order’ filter which allows for adjusting the ACF field order. This also adds the possibility to prepend field content to WordPress’ post_content using a negative field order. Props skaeser.

2.1.0

Објављено 10. јула 2018. године

Bugfixes:
* Fixes a bug where attempting to get the ACF version, wouldn’t always be reliable. This would lead the plugin to think that a newer version was installed than what was actually present.
* Fixes potential conflicts with other plugins due to generic variable naming.
* Fixes a bug where the YoastSEO ACF Content analysis would attempted to be loaded, although it wasn’t available.

Остало:
* Додаје пример филтрирања у упутству.

2.0.1

Објављено 19. октобра 2017. године

Bugfixes:
* Fixes the mismatch in textdomain according to the plugin slug.
* Fixes using an incorrect path when loading plugin data.
* Fixes a bug with flexible content and repeaters, in combination with ACF 5, causing JavaScript errors.
* Fixes a bug with short array notation which is a problem on sites running on PHP 5.3 or lower.
* Fixes a bug where assets are loaded without checking for required dependencies.

2.0.0

Објављено 22. августа 2017. године

Измене:
* У потпуности искодирано из почетка, укључујући потпуну подршку за ACF 4 и 5.

1.2.1

Објављено 24. јула 2017. године

Bugfixes:
* Fixes Yoast SEO Premium social sharing tabs not showing any content when this plugin is active, props Matt McAchran.

1.2.0

Објављено 30. јуна 2016. године

  • Отклањања грешака:

    • Исправља проблеме некомпатибилности са Yoast SEO верзијама 3.2+ где су средства регистрована са новим префиксом.
  • Интернационализација:

    • Побољшан текст у обавештењима када недостају зависности.