WP_Rewrite::remove_permastruct()publicWP 4.5.0

Removes a permalink structure.

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

Хуков нет.

Возвращает

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

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

global $wp_rewrite;
$wp_rewrite->remove_permastruct( $name );
$name(строка) (обязательный)
Name for permalink structure.

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

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

Код WP_Rewrite::remove_permastruct() WP 6.5.2

public function remove_permastruct( $name ) {
	unset( $this->extra_permastructs[ $name ] );
}