WordPress 代码实现增强分类、标签、用户搜索功能

更新时间:2018-10-06 分类:设计主题 浏览量:1656

WordPress 代码实现增强分类、标签、用户搜索功能

正在计划着一个新站点,有可能需要用到 WordPress 程序,而且,正是需要提升搜索功能。看到逍遥乐正好有一篇文章分享了代码,有可能适用,转载分享。

分类搜索


<?php 
$arg = array('search'=>get_search_query());
$categories = get_categories($arg);
if(!empty($categories)){
    echo '<div class="tag-items">';
    foreach( $categories as $category ){
        echo '<a class="link" href="' . get_category_link( $category->term_id ) . '" title="Go to '.$category->name.' ">'.$category->name.' </a>';
    }
    echo '</div>';
}
?>

标签搜索


<?php
$arg = array('search'=>get_search_query());
$tags = get_tags($arg);
if(!empty($tags)){
 echo '<div class="tag-items">';
 foreach( $tags as $tag ){
 echo '
<a class="tag-item" title="浏览和' . $tag->name .'有关的文章" href="'. attribute_escape( get_tag_link( $tag->term_id ) ) .'">
<span>' . $tag->name .'</span>
</a>';
 }
 echo '</div>';
}
?>

用户搜索


<?php
$arg = array('search'=>get_search_query());
$users = get_users($arg);
if(!empty($users)){
foreach( $users as $user ){

}
}
?>