WP_Customize_Nav_Menus::make_auto_draft_status_previewable()publicWP 4.7.0

Makes the auto-draft status protected so that it can be queried.

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

Хуков нет.

Возвращает

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

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

$WP_Customize_Nav_Menus = new WP_Customize_Nav_Menus();
$WP_Customize_Nav_Menus->make_auto_draft_status_previewable();

Заметки

  • Global. stdClass[]. $wp_post_statuses List of post statuses.

Список изменений

С версии 4.7.0 Введена.

Код WP_Customize_Nav_Menus::make_auto_draft_status_previewable() WP 6.5.2

public function make_auto_draft_status_previewable() {
	global $wp_post_statuses;
	$wp_post_statuses['auto-draft']->protected = true;
}