Shows Author Description On WordPress Sidebar
Sunday, February 22nd, 2009 23:06 -- by 貓小豆
需要修改主題Sidebar部分相關文件。核心代碼如下。
- < ?php
- if(is_string(get_the_author_description())) {
- the_author_description();
- }
- ?>
我當前使用的代碼如下。
- < ?php if(is_string(get_the_author_description())) { ?>
- <li>
- <h2>Profile</h2>
- <p>< ?php the_author_description(); ?></p>
- </li>
- < ?php } ?>