阻止WordPress在开机自检时呈现快捷代码

时间:2011-05-17 作者:Jiew Meng

假设我有[list] 短代码。我想有一个帖子解释如何使用短代码(我的主题文档)。我怎么能有这样的标题

[list type="arrow"] Shortcode Tag

目前wordpress会把转换搞砸[list type="arrow"] 转换为无效HTML

1 个回复
SO网友:Bainternet

这与this question 简给我们上了一课:)

只需使用双括号,WordPress将不会执行短代码,而只显示单括号。

所以你的标题是[[list type="arrow"]]

结束

相关推荐

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 }&#