remove_permastruct()
Removes a permalink structure.
Can only be used to remove permastructs that were added using add_permastruct(). Built-in permastructs cannot be removed.
Uses: WP_Rewrite()
1 time — 0.000013 sec (very fast) | 50000 times — 0.02 sec (speed of light) | PHP 7.0.5, WP 4.5
No Hooks.
Return
null
. Nothing.
Usage
remove_permastruct( $name );
- $name(string) (required)
- Name for permalink structure.
Notes
- See: WP_Rewrite::remove_permastruct()
- Global. WP_Rewrite. $wp_rewrite WordPress rewrite component.
Changelog
Since 4.5.0 | Introduced. |
Code of remove_permastruct() remove permastruct WP 6.0
function remove_permastruct( $name ) { global $wp_rewrite; $wp_rewrite->remove_permastruct( $name ); }