Linux 软件免费装

Twicon for WordPress

开发者 wokamoto
更新时间 2011年10月21日 14:52
捐献地址: 去捐款
PHP版本: 2.5 及以上
WordPress版本: 2.7.1

标签

comments twitter Avatar

下载

1.2.10 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0

详情介绍:

Let's show the Twitter avatar (Twicon) to your user with those comments of you in the Web site. When the Twitter avatar (Twicon) doesn't exist, Gravatar is displayed. Usage The function to add Twicon or Gravatars to your theme is called: get_avatar. The function returns a complete image HTML tag of the Avatar. The function is called as follows: <?php echo get_avatar( $id_or_email, $size = '96', $default = '<path_to_url>' ); ?> See more. Using Gravatars Localization "Twicon for WordPress" has been translated into languages. Our thanks and appreciation must go to the following for their contributions: If you have translated into your language, please let me know.

安装:

  1. Upload the entire twicon-for-wordpress folder to the /wp-content/plugins/ directory.
  2. Please make directory twicon under the /wp-content/cache/ directory.
  3. Activate the plugin through the 'Plugins' menu in WordPress.
  4. Add your 'comment.php'. <?php if (function_exists('twicon_input_box')) twicon_input_box(); ?>

常见问题:

E-mail to Twitter ID

Original filter can be set. function set_twitter_id($twitter_id, $email = '') { if ( $email == 'hoge@example.com' ) $twitter_id = 'hoge'; return $twitter_id; } add_filter('twitter_id/twicon.php', 'set_twitter_id', 10, 2);

Set profile image

function set_profile_image_url($profile_image_url, $id_or_email = '') { if ( $id_or_email == 'fuga@example.com' ) $profile_image_url = get_option('siteurl') . '/images/fuga.png'; return $profile_image_url; } add_filter('profile_image_url/twicon.php', 'set_profile_image_url', 10, 2);