PHP Wordpress作者搜索建议
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Wordpress作者搜索建议相关的知识,希望对你有一定的参考价值。
<?
$term = $_GET['s'];
$res = mysql_query("select * from wp_users where display_name like '%$term%'");
if ($res) {
?>
<p><strong>Were you looking for:</strong></p>
<ul>
<?
while($author = mysql_fetch_assoc($res)) {
$shortname = strtolower($author['user_login']);
?>
<li><a href="<? bloginfo('home'); ?>/author/<? echo $shortname; ?>/"><? echo $author['display_name']; ?></a></li> <!-- may vary based on permalink structure -->
<?
}
?>
</ul>
<?
}
?>
以上是关于PHP Wordpress作者搜索建议的主要内容,如果未能解决你的问题,请参考以下文章
wordpress如何搜索作者
PHP Wordpress - 列出作者对作者页面的评论
怎样制作wordpress手机主题
PHP 仅在作者页面上显示WordPress作者RSS Feed
wordpress教程 wordpress建站教程
php WordPress - 删除作者链接