wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



remove_permastruct › WordPress Function

Da4.5.0
Deprecaton/a
remove_permastruct ( $name )
Parametri:
  • (string) $name Name for permalink structure.
    Richiesto:
Vedi:
Definito a:
Codex:

Removes a permalink structure.

Can only be used to remove permastructs that were added using add_permastruct(). Built-in permastructs cannot be removed.


Sorgenti

function remove_permastruct( $name ) {
	global $wp_rewrite;

	$wp_rewrite->remove_permastruct( $name );
}