remove_rewrite_tag( string $tag )
Removes an existing rewrite tag (like %postname%).
Description Description
Parameters Parameters
- $tag
-
(string) (Required) Name of the rewrite tag.
Source Source
File: wp-includes/rewrite.php
function remove_rewrite_tag( $tag ) {
global $wp_rewrite;
$wp_rewrite->remove_rewrite_tag( $tag );
}
Expand full source code Collapse full source code View on Trac
Changelog Changelog
| Version | Description |
|---|---|
| 4.5.0 | Introduced. |