remove_rewrite_tag( string $tag )

Removes an existing rewrite tag (like %postname%).


Parameters

$tag string Required
Name of the rewrite tag.

Top ↑

Source

File: wp-includes/rewrite.php. View all references

function remove_rewrite_tag( $tag ) {
	global $wp_rewrite;
	$wp_rewrite->remove_rewrite_tag( $tag );
}


Top ↑

Changelog

Changelog
Version Description
4.5.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.