remove_rewrite_tag()

最后更新于:2021-11-27 21:44:11

remove_rewrite_tag( string$tag)

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

参数

$tag

(string) (Required) Name of the rewrite tag.

源文件

文件: gc-includes/rewrite.php

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