0

我用 twitter 按钮 api 制作了一个短代码挂钩。当我在图像或内容之后的任何帖子中使用短代码时,按钮显示在帖子顶部。我如何在帖子的图像或内容下方显示按钮。

这是要弄清楚的代码。

function twittershare()
{
    ?>
        <a href="https://twitter.com/share" class="twitter-share-button" data-lang="en" data-url="<?php echo get_option('option1'); ?>" data-via="<?php echo get_option('option2');?>" data-text="<?php echo get_option('option3'); ?>" data-count="<?php echo get_option('option4'); ?>" data-lang="<?php echo get_option('option5'); ?>" data-counturl="<?php echo get_option('option1'); ?>" >Tweet</a>
        <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
    <?php
}

以下是我创建的简码。

add_shortcode('share',array('SampleTwitterShare','twittershare'));

在哪里:

  • Share是简码。
  • SampleTwitterShare是类名。
  • twittershare是 twitter 分享 API 的功能。
4

1 回答 1

0

您必须(连接并)在短代码回调函数中返回HTML,例如:

function twittershare()
{
    $html = '';

    $html .= '<a href="https://twitter.com/share" class="twitter-share-button" data-lang="en" data-url="' . get_option('option1') . '" data-via="' . get_option('option2') . '" data-text="' . get_option('option3') . '" data-count="' . get_option('option4') . '" data-lang="' . get_option('option5') . '" data-counturl="' . get_option('option1') . '" >Tweet</a>';
    $html .= '<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>';

    return $html;
}
于 2013-04-30T09:41:15.290 回答