WPSEO_Taxonomy_Fields::get_content_fields()protectedYoast 1.0

Returns array with the fields for the general tab.

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

Хуки из метода

Возвращает

Массив.

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->get_content_fields();

Код WPSEO_Taxonomy_Fields::get_content_fields() Yoast 22.4

protected function get_content_fields() {
	$fields = [
		'title' => [
			'label'       => '',
			'description' => '',
			'type'        => 'hidden',
			'options'     => '',
			'hide'        => false,
		],
		'desc' => [
			'label'       => '',
			'description' => '',
			'type'        => 'hidden',
			'options'     => '',
			'hide'        => false,
		],
		'linkdex' => [
			'label'       => '',
			'description' => '',
			'type'        => 'hidden',
			'options'     => '',
			'hide'        => false,
		],
		'content_score' => [
			'label'       => '',
			'description' => '',
			'type'        => 'hidden',
			'options'     => '',
			'hide'        => false,
		],
		'inclusive_language_score' => [
			'label'       => '',
			'description' => '',
			'type'        => 'hidden',
			'options'     => '',
			'hide'        => false,
		],
		'focuskw' => [
			'label'       => '',
			'description' => '',
			'type'        => 'hidden',
			'options'     => '',
			'hide'        => false,
		],
		'is_cornerstone' => [
			'label'       => '',
			'description' => '',
			'type'        => 'hidden',
			'options'     => '',
			'hide'        => false,
		],
	];

	/**
	 * Filter: 'wpseo_taxonomy_content_fields' - Adds the possibility to register additional content fields.
	 *
	 * @param array $additional_fields The additional fields.
	 */
	$additional_fields = apply_filters( 'wpseo_taxonomy_content_fields', [] );

	return array_merge( $fields, $additional_fields );
}