WPSEO_Primary_Term::__construct()publicYoast 1.0

The taxonomy this term is part of.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

$WPSEO_Primary_Term = new WPSEO_Primary_Term();
$WPSEO_Primary_Term->__construct( $taxonomy_name, $post_id );
$taxonomy_name(строка) (обязательный)
Taxonomy name for the term.
$post_id(int) (обязательный)
Post ID for the term.

Код WPSEO_Primary_Term::__construct() Yoast 22.4

public function __construct( $taxonomy_name, $post_id ) {
	$this->taxonomy_name = $taxonomy_name;
	$this->post_ID       = $post_id;
}