Wordpress Custom Widget渲染" 1"在输出上

时间:2016-06-02 12:22:35

标签: wordpress wordpress-plugin widget

我的Wordpress Custom Widget在display()方法a" 1"的输出后面呈现。我认为这是因为回声得到了评估。

public function widget($args, $instance) {
    echo 'this is my output';
}

我的输出如下

this is my output1

任何人都有解决方案吗?

提前致谢!

2 个答案:

答案 0 :(得分:0)

是否可以添加die;

例如:

public function widget($args, $instance) {
    echo 'this is my output';
    die;
}

答案 1 :(得分:0)

我找到了答案。如果您使用Timber将twig作为模板引擎集成到Wordpress中,请按照文档中的说明如何将小部件集成到树枝模板中(https://github.com/timber/timber/wiki/sidebar#method-3-dynamic):)