Yoast\WP\SEO\Helpers

Post_Helper::get_the_excerpt()publicYoast 1.0

Retrieves the post excerpt (without tags).

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

Хуков нет.

Возвращает

Строку. Post excerpt (without tags).

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

$Post_Helper = new Post_Helper();
$Post_Helper->get_the_excerpt( $post_id );
$post_id(int) (обязательный)
Post ID.

Код Post_Helper::get_the_excerpt() Yoast 22.4

public function get_the_excerpt( $post_id ) {
	return $this->string->strip_all_tags( \get_the_excerpt( $post_id ) );
}