wpseo_next_rel_link хук-фильтрYoast 1.0

Filter: wpseo_next_rel_link Allow changing link rel output by Yoast SEO.

Использование

add_filter( 'wpseo_next_rel_link', 'wp_kama_wpseo_next_rel_link_filter' );

/**
 * Function for `wpseo_next_rel_link` filter-hook.
 * 
 * @param string $unsigned The full `<link` element.
 *
 * @return string
 */
function wp_kama_wpseo_next_rel_link_filter( $unsigned ){

	// filter...
	return $unsigned;
}
$unsigned(строка)
The full <link element.

Где вызывается хук

Rel_Next_Presenter::present()
wpseo_next_rel_link
yoast/src/presenters/rel-next-presenter.php 47
return \apply_filters( 'wpseo_next_rel_link', $output );

Где используется хук в Yoast SEO

Использование не найдено.