不知道我做错了什么,但我有以下代码:
class the_shortcode {
//Define Class Variables
private $var;
public function __construct()
{
add_shortcode( \'the_single\', array( $this, \'shortcode_2\' ));
}
function shortcode_1() {
$this->var = \'World\';
}
function shortcode_2() {
echo $this->var;
}
}
$the_shortcode = new the_shortcode();
我早就料到了
shortcode_1()
将定义
$var
还有那个
shortcode_2()
, 当在shortcode操作中调用时,显示它会导致“World”,但实际上什么都不显示。
在帖子上,我有一个短代码:[the\\u single]
有什么想法吗?
谢谢