이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

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.

FAQ

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.