Wordpress作者搜索建议

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress作者搜索建议相关的知识,希望对你有一定的参考价值。

If your site also has registered users that aren't authors, you might have to modify this to cross-reference the usermeta table. Otherwise, this should work pretty well.
  1. <?
  2. $term = $_GET['s'];
  3. $res = mysql_query("select * from wp_users where display_name like '%$term%'");
  4. if ($res) {
  5. ?>
  6. <p><strong>Were you looking for:</strong></p>
  7. <ul>
  8. <?
  9. while($author = mysql_fetch_assoc($res)) {
  10. $shortname = strtolower($author['user_login']);
  11. ?>
  12. <li><a href="<? bloginfo('home'); ?>/author/<? echo $shortname; ?>/"><? echo $author['display_name']; ?></a></li> <!-- may vary based on permalink structure -->
  13. <?
  14. }
  15. ?>
  16. </ul>
  17. <?
  18. }
  19. ?>

以上是关于Wordpress作者搜索建议的主要内容,如果未能解决你的问题,请参考以下文章

如何在WordPress菜单中添加搜索框?

wordpress如何搜索作者

WordPress - 代码片段插件

markdown 在WordPress中使用jQuery代码片段

Wordpress - 将代码片段包含到布局的选定部分的插件

PHP WordPress条件为主页SlideDeck主题代码片段