> WordPress中文手册 > wordpress获取相关文章的方法

当读者在看你的文章时,如果我们能在我们的文章末尾添加该文章的相关文章推荐,这样不仅对读者有一个更全面了解该文章的相关信息,也能提高我们网站的访问量,本文将介绍WordPress中获取相关文章的方法:
将以下代码添加到我们主题的functions.PHP文件中,各个部分功能都有注释:

// 根据文章分类读取相关文章
function wptuts_more_from_cat( $title = "相关文章:" ) {
    global $post;
    // 显示第一个分类的相关文章
    $categories = get_the_category( $post->ID );
    $first_cat = $categories[0]->cat_ID;
    // 标题
    $output = '<div id="more-from-cat"><h3>' . $title . '</h3>';
    // 参数设置
    $args = array(
        // 分类设置
        'category__in' => array( $first_cat ),
        // 排除的文章ID
        'post__not_in' => array( $post->ID ),
        // 显示文章数,默认为5
        'posts_per_page' => 5
    );
    // 通过 get_posts() 函数获取数据
    $posts = get_posts( $args );
    if( $posts ) {
        $output .= '<ul>';
        // 开始循环
        foreach( $posts as $post ) {
            setup_postdata( $post );
            $post_title = get_the_title();
            $permalink = get_permalink();
            $output .= '<li><a href="' . $permalink . '" title="' . esc_attr( $post_title ) . '">' . $post_title . '</a></li>';
        }
        $output .= '</ul>';
    } else {
        // 当没有相关分类文章显示如下
        $output .= '<p>抱歉,暂无相关文章!/p>';
    }
    // div结束
    $output .= '</div>';
    return $output;
}

OK,然后打开我们的文章页模板single.php 文件,然后调用以上方法来获取分类相关文章

<?php echo wptuts_more_from_cat( '相关文章:' ); ?>