我想开发一个插件来增加使用短代码做某事的能力。我希望它像这样运行:
[shortcode]Content[/shortcode]
这是我使用的代码:
function quote( $atts, $content = null ) {
return '<div class="right text">"'.$content.'"</div>';
}
add_shortcode("quote", "quote");
$content 变量,它返回短代码的值,在本例中为 Content,不能在函数之外使用。我想在 PHP 代码的其他部分使用它,但我无法让它工作。我对PHP没有经验,所以如果您有任何解决方案,请尽量说清楚。
谢谢。