remove_shortcode

函数
remove_shortcode ( $tag )
参数
  • (string) $tag Shortcode tag to remove hook for.
    Required:
定义位置
相关方法
remove_all_shortcodesdo_shortcoderemove_rolewp_video_shortcodeadd_shortcode
引入
2.5.0
弃用
-

remove_shortcode: 这个函数用来从WordPress中删除一个短码。短码是用来向文章和页面添加动态内容的: 这个函数需要一个参数,就是要删除的短码的名称。

删除短代码的钩子。

function remove_shortcode( $tag ) {
	global $shortcode_tags;

	unset( $shortcode_tags[ $tag ] );
}

常见问题

FAQs
查看更多 >