1 在文章内容末尾添加随机推荐文章

在文章末尾增加随机推荐文章既可以增加PV也有利于SEO,研究了一番之后,得出了纯代码在文章内容末尾增加10个随机推荐文章链接的方法。

只需要在主题的function.php文件中添加以下代码:

function RandomArticle($content )
{
    //global $post;
    if(is_single())
    {
        // 获取文章分类
        $categories = get_the_category();
        foreach($categories as $category)
        {
            // 获取文章分类ID
            $catid = $category->term_id;
            // 随机获取当前分类10个随机文章
            $posts = get_posts('numberposts=10&orderby=rand&category='. $catid); 
            $randomArticle = '';
            foreach($posts as $post)
            {
                // 获取文章标题
                $postTitle = $post->post_title;

                // 获取文章链接
                $postLink = $post->guid;

                $link = '<li><a href="'.$postLink.'">'.$postTitle.'</a></li>';
                $randomArticle = $randomArticle.$link;
            }
            $randomArticle = '<h1>随机文章推荐</h1><ul>'.$randomArticle.'</ul>';
        }

        $content = $content.'<div class="post-random-article" >'.$randomArticle.'</div>';
    }

    return $content;
}
add_action( 'the_content', 'RandomArticle' );

效果如本文下随机推荐文章所示。