我用 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 的功能。