如何显示短码的语法

时间:2011-05-11 作者:greenbandit

我想在一些帖子中展示如何运行短代码的语法。我的意思是,像这样的东西(myshortcode),但如果不运行它,这是可能的吗?

3 个回复
最合适的回答,由SO网友:Jan Fabry 整理而成

如果使用双括号,WordPress will not execute the shortcode but just display it with single brackets. 所以[[gallery]] 在您的帖子中成为[图库]。

SO网友:MZAweb

尝试更换第一个[ 具有[ 在“源编辑器”选项卡中,而不是在“视觉”选项卡中

SO网友:PoseLab

我不得不使用三个括号,但我不知道为什么

结束

相关推荐

Nested Shortcode Detection

如果您熟悉此代码<?php $pattern = get_shortcode_regex(); preg_match(\'/\'.$pattern.\'/s\', $posts[0]->post_content, $matches); if (is_array($matches) && $matches[2] == \'YOURSHORTCODE\') { //shortcode is being used }&#