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

WP About Author

外掛說明

This plugin is the easiest way to add a customizable author bio below your posts. The plugin works right out of the box with WordPress built in profiles.

Customization capabilities include

  1. Three border styles to match any theme
  2. Change background color with easy to use color picker
  3. Display settings allow you to control when to display author bios
  4. Display text links or icons to a users social media profiles
  5. Change the size and shape of your avatar

This plugin also expands your profile page by adding popular social media fields so it’s easier for readers to follow your authors.

螢幕擷圖

  • Author bio below a post
  • WP About Author settings page

安裝方式

  1. Upload the ‘wp-about-author’ folder to the ‘/wp-content/plugins/’ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Edit your WordPress user profile
  4. Use the settings page to choose when to display bios

常見問題集

Can I change the background color of the box?

Of course your can. It’s one of the options available to you in the settings panel.

Can I change the layout of the content in the box?

As of version 1.3 you can. All you have to do is create your own HTML using the following templates tags and use a filter.

Templates tags are: %%bordertype%%, %%borderbg%%, %%authorpic%% and %%content%%

Example:
Add the following to a functionality plugin or your functions.php file
< ?php
function my_wp_about_author_template(){
return '%%authorpic%%%%content%%’;
}
add_filter(‘wp_about_author_template’, ‘my_wp_about_author_template’);
?>

Can I add additional social media links?

As of version 1.3 you can. Once again using a filter you can intercept the data that generates these links and add your own.

Example:
Add the following to a functionality plugin or your functions.php file
‘http://www.myservice.com/%%username%%’,
‘title’=>’My Service’,
‘icon’=>’http://www.fullpathtoicon.com/icon.png’
);
return ‘%%authorpic%%%%content%%’;
}
add_filter(‘wp_about_author_get_socials’, ‘my_wp_about_author_social’);
?>

Can I filter the author box from additional pages not listed in my settings?

Sure thing. Now there’s a WordPress filter for that.

Example:
Add the following to a functionality plugin or your functions.php file to exclude the author box from a page with the id equal to 100

Are there any other filters that let me modify the output?

The following filters have been added:
* wp_about_author_name() – Modify the output of the name in the author box
* wp_about_author_description() – Modify the output of the description in the author box
* wp_about_author_more_posts() – Modify the “More Posts” text in the author box
* wp_about_author_website() – Modify the “Website” text in the author box
* wp_about_author_follow_me() – Modify the “Follow Me:” text in the author box
* wp_about_author_separator() – Change the separator displayed between text links

使用者評論

2016 年 9 月 3 日
Does exactly what it says. I'm using it on a 4.4.2 installation and have found it useful to update people on my news - I just edit the Author field in my Profile, and any promos etc are shared on the fly.
閱讀全部 17 則使用者評論

參與者及開發者

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

參與者

將〈WP About Author〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

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

變更記錄

The current version is 1.5 (2014.4.5)

1.5 (2014.4.5)

  • Fixed update
  • Fixing title alignment with avatar
  • Fixing display of text area next to avatar

1.4 (2014.3.29)

  • Fixed conflict with WordPress SEO
  • Can change size and shape of Avatar image
  • Fixed broken color picker
  • Added link to Settings page from Plugins page

1.3 (2012.2.23)

  • Added social media icons as an alternative to text links
  • Optimized code and added actions and filters for developers to modify output
  • Cleaned up settings area

1.2 (2011.7.13)

  • Added option to display bio in feed

1.1 (2010.11.30)

  • Updated Reame
  • Fixed formatting issues

1.0

  • Plugin released