Sets the category base for the category permalink.
Will update the ‘category_base’ option, if there is a difference between the current category base and the parameter value. Calls WP_Rewrite::init() after the option is updated.
$category_basestringrequired
public function set_category_base( $category_base ) {
if ( get_option( 'category_base' ) !== $category_base ) {
update_option( 'category_base', $category_base );
$this->init();
}
}
| Version | Description |
|---|---|
| 1.5.0 | Introduced. |
© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_rewrite/set_category_base