Yoast\WP\SEO\Helpers

Pagination_Helper::is_rel_adjacent_disabled()publicYoast 1.0

Checks whether adjacent rel links are disabled.

Метод класса: Pagination_Helper{}

Хуки из метода

Возвращает

true|false. Whether adjacent rel links are disabled or not.

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

$Pagination_Helper = new Pagination_Helper();
$Pagination_Helper->is_rel_adjacent_disabled();

Код Pagination_Helper::is_rel_adjacent_disabled() Yoast 22.4

public function is_rel_adjacent_disabled() {
	/**
	 * Filter: 'wpseo_disable_adjacent_rel_links' - Allows disabling of Yoast adjacent links if this is being handled by other code.
	 *
	 * @param bool $links_generated Indicates if other code has handled adjacent links.
	 */
	return \apply_filters( 'wpseo_disable_adjacent_rel_links', false );
}