内容中的WordPress快捷码,侧边栏中的输出? 时间:2017-01-30 作者:sebifeixler 我想创建一个带有参数的快捷码,可以在WordPress帖子内容中使用。如果使用了快捷码,则内容应显示在侧栏区域!我可以使用ob_end_clean(), 但我不知道如何将此部分放入侧栏(我不想使用$_GLOBAL var)。有没有干净的方法来解决这个问题? 1 个回复 SO网友:CodeMascot 如果你想在侧边栏中显示内容,如果当前帖子内容有短代码,那么你应该试试has_shortcode 作用这是一个演示-$content = get_the_content(); if( has_shortcode( $content, \'your-shortcode\' ) ) { // The content has a [your-shortcode] short code, so this check returned true. } 希望有帮助。 文章导航