在Wordpress中创建twitter小部件函数.php文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Wordpress中创建twitter小部件函数.php文件相关的知识,希望对你有一定的参考价值。

I found this code for adding a custom twitter widget to your functions file, it's been useful on more that a few occasions. So thought I would add it to the blog as well as development. As the code needs the twitter_update_list ID it's not possible to put more than one of these on a page so I haven't made it into a multiple widget.
  1. <?php function widget_mytheme_twitter() { ?>
  2. <div>
  3. <ul><li><h2><a href="http://twitter.com/MYTWITTER">My Twitter Feed</a></h2>
  4. <ul id="twitter_update_list" ><li><script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script>
  5. <script type="text/javascript" src="http://twitter.com/statuses/user_timeline/MYTWITTER.json?callback=twitterCallback2&amp;count=5"></script></li></ul>
  6. </li></ul></div>
  7. <?php } if ( function_exists('register_sidebar_widget') )
  8. register_sidebar_widget(__('Twitter feed'), 'widget_mytheme_twitter'); ?>

以上是关于在Wordpress中创建twitter小部件函数.php文件的主要内容,如果未能解决你的问题,请参考以下文章

php EMPTY WIDGET用于在wordpress中创建单个小部件的插件代码。

PHP 在Wordpress function.php文件中创建一个推特小部件

如何在 php 和 javascript 中创建小部件?

如何在 Qt 的后续函数调用中访问在函数中创建的小部件

创建一个在颤动中创建小部件的按钮[关闭]

小部件标题未显示在我的自定义 WordPress 主题中