Tag Archives: Related Posts

顯示相關文章程式碼 – Related Posts

在WordPress討論區看到一則討論,提到利用tags的歸類方式顯示相關文章,只需要在檔案中加入一段程式碼就可以,對於不喜歡加裝外掛程式的朋友或是對WordPress程式有興趣的朋友都可以參考看看。 在想要顯示相關文章的地方加入以下的程式碼: <?php //for use in the loop, list 5 post titles related to first tag on current post $tags = wp_get_post_tags($post->ID); if ($tags) { echo ‘Related Posts’; $first_tag = $tags[0]->term_id; $args=array( ‘tag__in’ => array($first_tag), ‘post__not_in’ => array($post->ID), ‘showposts’=>5, ‘caller_get_posts’=>1 … Continue reading

Posted in 網誌 | Tagged , | Leave a comment