nofollow_rss_links хук-фильтр . Yoast 1.4.20
Filter: 'nofollow_rss_links' - Allow the developer to determine whether or not to follow the links in the bits Yoast SEO adds to the RSS feed, defaults to true.
Использование
add_filter( 'nofollow_rss_links', 'filter_function_name_2189' ); function filter_function_name_2189( $unsigned ){ // filter... return $unsigned; }
- $unsigned(true/false)
- Whether or not to follow the links in RSS feed.
По умолчанию: true
Список изменений
С версии 1.4.20 | Введена. |
Где вызывается хук
nofollow_rss_links
yoast/src/integrations/front-end/rss-footer-embed.php 191
if ( \apply_filters( 'nofollow_rss_links', true ) ) {