WordPress如何在指定文章中不显示短代码

追格官方小助手/ 2022年08月13日/ WordPress/ 浏览 927

WordPress若想在指定文章中不显示短代码,可以按追格小编的方法操作。


function remove_shortcode_from_index( $content ) {
	if ( is_single( array( 888 ) ) ) {
		$content = strip_shortcodes( $content );
	}
	return $content;
}
add_filter( 'the_content', 'remove_shortcode_from_index' );


方法:在当前WordPress主题的 functions.php 文件中插入上面这段代码即可。


ps:888为文章id,按需修改即可。

发表评论

暂无评论,抢个沙发...

客服 工单