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

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

FAQ

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