このプラグインは WordPress の最新3回のメジャーリリースに対してテストされていません。もうメンテナンスやサポートがされていないかもしれず、最新バージョンの WordPress で使用した場合は互換性の問題が発生する可能性があります。

User Info Display

説明

Displays user info using a shortcode that can be placed in a post, page or widget or with template tags that can be added directly to your theme files. If the user has a Gravatar, it will be included as well. The information is pulled from the user’s WordPress profile.

Plugin Website. Support in comments.

スクリーンショット

  • screenshot-1.jpg

インストール

To install the plugin and get it working.

  1. Upload user-info-display.php to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Place [userinfo] in your posts, pages or widgets
  4. You can include the following attributes:
    • id = the user’s id, defaults to author of current post/page
    • align = right or left, aligns the Gravatar. If not included, will default to left.
    • name = yes or no, will include the user’s name or not
    • email = yes or no, will include the user’s email, a link from the user’s name. Name attribute must either not be included or be included and have the value ‘no’
    • url = yes or no, will include the user’s url, if available. Will display after the description.
  5. To= use directly in your template files use the format:
    • uinfo_display($id, $align, $name, $email, $url);
    • eg: uinfo_display(1, “left”, “yes”,”no”, $no);
  6. All of the attributes/function arguments are optional, but if you omit one from the template tag you must leave in the comma
    • eg: uinfo_display();
      • uinfo_display(34);
      • uinfo_display(47, “right”, ,”no”, “no”);

FAQ

Where does the plugin get it’s user information from?

The information is pulled from the user’s WordPress profile (http://yoursite.com/wp-admin/users.php) and the image is the user’s Gravatar (http://en.gravatar.com/)

To do

Add Twitter and Facebook support

評価

このプラグインにはレビューがありません。

貢献者と開発者

User Info Display はオープンソースソフトウェアです。以下の人々がこのプラグインに貢献しています。

貢献者

“User Info Display” をあなたの言語に翻訳しましょう。

開発に興味がありますか ?

コードを閲覧するか、SVN リポジトリをチェックするか、開発ログRSS で購読してみてください。

変更履歴

1.0.0

  • Template tag now available
  • Fixed a bug where email setting did not work properly

0.9.3

  • Added email address, if available
  • Added user’s name
  • Added the user’s url, if available

0.9.2

  • Change to readme.txt only

0.9.1

  • Removed the dependance on User Photo plugin
  • Added Gravatar support (if user has a Gravatar it will be displayed)

0.9

  • Initial version.