WP_Rewrite::set_tag_base( string $tag_base )
Sets the tag base for the tag permalink.
Description Description
Will update the ‘tag_base’ option, if there is a difference between the current tag base and the parameter value. Calls WP_Rewrite::init() after the option is updated.
Parameters Parameters
- $tag_base
-
(string) (Required) Tag permalink structure base.
Source Source
File: wp-includes/class-wp-rewrite.php
public function set_tag_base( $tag_base ) { if ( $tag_base != get_option( 'tag_base' ) ) { update_option( 'tag_base', $tag_base ); $this->init(); } }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
2.3.0 | Introduced. |