這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

Plugin Info

外掛說明

This plugin provides a simple way of displaying up-to-date information about specific plugins hosted on the WordPress Plugin Directory in your blog posts and pages. It is intended for plugin authors who want to display details of their own plugins from the WP Plugin Directory on their blog and want those details to remain up to date. It’s also useful for bloggers who may blog about plugins and would like the details in their blog posts to remain up to date.

This plugin uses WordPress shortcodes so it’s easy to include any information about a particular plugin in your post or page.

Er, what?

You want to blog about a particular plugin on your blog and include various details of it in your blog post (eg. the number of downloads or the last updated date). You could manually type this information into your post but this means that in a few days/weeks/months’ time the information will be out of date.

This plugin allows you to use shortcodes in your blog posts and pages which periodically fetches this information from the WordPress Plugin Directory, therefore ensuring the information always remains up to date.

Here’s an example

This plugin uses WordPress shortcodes so it’s easy to include any information about a particular plugin in your post or page.

This plugin has been downloaded [plugin downloaded] times!

This will produce the following content in your blog post:

This plugin has been downloaded 1,650 times!

The download count will remain current without you having to touch your blog post again.

Usage

  1. Write a new blog post or page, or open an existing post or page for editing.
  2. In the ‘Plugin Info’ box on that screen, type the slug of the plugin (see screenshot #1). The plugin slug is the last part of the URL of the plugin’s page on wordpress.org.
  3. Add a shortcode to your blog entry like this: [plugin version] and save the post. (That’s the word plugin and not the slug of the plugin).
  4. Take a look at your post and the version number of the plugin will be displayed.

For a complete list of all the fields you can display, see the FAQ page.

螢幕擷圖

  • Adding a plugin to a post. Remember to use the slug and not the name, as using the name isn't 100% reliable.

常見問題集

Is this plugin for me?

This plugin will be of use to you if:

  1. You are a plugin author and you want an easy way to include up to date information about any of your plugins in your blog posts or pages.
  2. You are the author of a blog that highlights plugins of interest and you want to ensure that information in your posts remains up to date.
Which attributes of a plugin can I display?

The available shortcodes can be seen from the post writing screen. Just click the [show] link in the ‘Plugin Info’ box.

Shortcodes which display a formatted hyperlink can have their default link text overridden via the text attribute on the shortcode. For example: [plugin homepage text='Home Page'] will display a link to the plugin homepage with the link text ‘Home Page’.

Can I display plugin info outside of my blog posts?

Yes! You can use the plugin_info() function anywhere in your template. The function takes two parameters, the slug of your plugin and the attribute you’d like to display. The following example will display the last updated date for my User Switching plugin:

plugin_info( 'user-switching', 'updated' );`

You can also get the info rather than printing it out using the get_plugin_info() function:

$updated = get_plugin_info( 'user-switching', 'updated' );`

Be aware that plugin information isn’t cached between page requests using this method, so be sure to implement some caching of your own.

The geek stuff

The plugin information is collected from wordpress.org each time you save your post or page. It is updated hourly using WordPress’ cron system and uses the Plugin API in WordPress core. The plugin data is cached as an associative array in a custom field called plugin-info, and the plugin slug you enter is saved as a custom field called plugin. This means you can also access the plugin data using get_post_meta(), but I’ll let you figure that out for yourself.

使用者評論

這個外掛目前沒有任何使用者評論。

參與者及開發者

以下人員參與了開源軟體〈Plugin Info〉的開發相關工作。

參與者

將〈Plugin Info〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

變更記錄

For Plugin Info’s changelog, please see the Releases page on GitHub.