WPSEO_Frontend::canonical
Outputs the canonical value.
Метод класса: WPSEO_Frontend{}
Хуков нет.
Возвращает
Строку|null.
Использование
$WPSEO_Frontend = new WPSEO_Frontend(); $WPSEO_Frontend->canonical( $echo, $un_paged, $no_override );
- $echo(true|false)
- Whether or not to output the canonical element.
По умолчанию:true - $un_paged(true|false)
- Whether or not to return the canonical with or without pagination added to the URL.
По умолчанию:false - $no_override(true|false)
- Whether or not to return a manually overridden canonical.
По умолчанию:false
Код WPSEO_Frontend::canonical() WPSEO Frontend::canonical Yoast 27.6
public function canonical( $echo = true, $un_paged = false, $no_override = false ) {
_deprecated_function( __METHOD__, 'Yoast SEO 14.0' );
$presentation = $this->get_current_page_presentation();
$presenter = new Canonical_Presenter();
/** This filter is documented in src/integrations/front-end-integration.php */
$presenter->presentation = $presentation;
$presenter->helpers = $this->helpers;
$presenter->replace_vars = $this->replace_vars;
if ( ! $echo ) {
return $presenter->get();
}
echo $presenter->present();
}