Yoast\WP\SEO\Presentations
Indexable_Post_Type_Presentation::get_paginated_url() protected Yoast 1.0
Wraps the get_paginated_url pagination helper method.
{} Это метод класса: Indexable_Post_Type_Presentation{}
Хуков нет.
Возвращает
Строку. The paginated URL.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->get_paginated_url( $url, $page );
- $url(строка) (обязательный)
- The un-paginated URL of the current archive.
- $page(строка) (обязательный)
- The page number to add on to $url for the $link tag.
Код Indexable_Post_Type_Presentation::get_paginated_url() Indexable Post Type Presentation::get paginated url Yoast 15.6.2
protected function get_paginated_url( $url, $page ) {
return $this->pagination->get_paginated_url( $url, $page, false );
}