WPSEO_Frontend::add_paging_to_title()publicYoast 1.0

This function adds paging details to the title.

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

Хуков нет.

Возвращает

Строку.

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

$WPSEO_Frontend = new WPSEO_Frontend();
$WPSEO_Frontend->add_paging_to_title( $sep, $seplocation, $title );
$sep(строка) (обязательный)
Separator used in the title.
$seplocation(строка) (обязательный)
Whether the separator should be left or right.
$title(строка) (обязательный)
The title to append the paging info to.

Код WPSEO_Frontend::add_paging_to_title() Yoast 22.4

public function add_paging_to_title( $sep, $seplocation, $title ) {
	_deprecated_function( __METHOD__, 'Yoast SEO 14.0' );

	return $title;
}