短代码的示例

WordPress 的短代码在 2.5 中引入

这是短代码的例子

[button]

要使用短代码直接进入主题你必须使用 do_shortcode()

 <?php echo do_shortcode('[button]'); ?>

要自定义按钮,我们可以简单地添加如下内容:

[button type="twitter"]

或者为了使它更好,我们可以使用封闭的短代码:

[button type="twitter"]Follow me on Twitter![/button]