创建自动关闭的短代码

最简单的短代码是自动关闭的。我们将创建一个指向我们 Twitter 帐户的简单链接,然后将其添加到博客文章中。所有代码都在 functions.php 中,位于/wp-content/themes/your-theme/。如果你没有,只需创建它并将代码放入其中。

<?php 
function button_shortcode() {
return '<a href="http://twitter.com/rupomkhondaker" class="twitter-button">Follow me on Twitter!</a>"';
}
add_shortcode('button', 'button_shortcode'); 
?>

用法:[button]