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

WPOCN WordPress教程评论25阅读模式

如果准备在某篇文章中不显示短代码,可以将下面代码添加到当前主题函数模板functions.php中:

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

修改其它中的数字123为文章ID

文章末尾固定信息

weinxin
我的微信
我的微信
微信扫一扫
 
WPOCN
  • 本文由 WPOCN 发表于 2022年11月23日14:08:09
  • 转载请务必保留本文链接:https://www.tghello.com/4332.html

发表评论