wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



remove_permastruct › WordPress Function

Seit4.5.0
Veraltetn/v
remove_permastruct ( $name )
Parameter:
  • (string) $name Name for permalink structure.
    Erforderlich: Ja
Siehe:
Definiert in:
Codex:

Removes a permalink structure.

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


Quellcode

function remove_permastruct( $name ) {
	global $wp_rewrite;

	$wp_rewrite->remove_permastruct( $name );
}