wordpress do_shortcode和Shareaholic插件

时间:2014-10-31 01:49:10

标签: php wordpress wordpress-plugin shortcode

我正在尝试在我的模板中添加Shareaholic推荐插件。

结果总是空白的div ...谁能帮助我?

<div id="recommendations">
                <?php do_shortcode("shareaholic app='recommendations' id='xxxx'");?>
            </div>

或者:

<div id="recommendations">
                <?php global $wp_embed;
                      $post_embed = $wp_embed->run_shortcode('shareaholic app="recommendations" id="xxxx"');?>
            </div>

由于

1 个答案:

答案 0 :(得分:1)

do_shortcode需要得到回应:

echo do_shortcode( '[shareaholic app="test"]' );