remove_permastruct

函数
remove_permastruct ( $name )
参数
  • (string) $name Name for permalink structure.
    Required:
相关
  • WP_Rewrite::remove_permastruct()
定义位置
相关方法
add_permastructremove_query_argremove_actionremove_accentsremove_shortcode
引入
4.5.0
弃用
-

remove_permastruct: 这个函数用来删除WordPress中的一个固定结构。固定链接结构是用来定制WordPress网站的URL的: 这个函数需要一个参数,即要删除的固定结构的名称。

删除一个永久结构。

只能用于删除使用add_permastruct()添加的permastructs。内置的permastructs不能被删除。

function remove_permastruct( $name ) {
	global $wp_rewrite;

	$wp_rewrite->remove_permastruct( $name );
}

常见问题

FAQs
查看更多 >