WordPress Show the same classification of the latest article implementation method

Source: Internet
Author: User

Today, I want to show you a list of the most recent articles under the current category while tossing the topic. is to display the latest articles with the same classification as the article. See the new theme of Prower Prowerv4 has this function inside. When you are in the article page, display the unified category article. The code is as follows:

The code is as follows Copy Code
<div id= "Related_post" >
<?php
if (Is_single ()) {
$cats = Get_the_category ();
}
foreach ($cats as $cat) {
$posts = get_posts (Array (
' Category ' => $cat->cat_id,
' Exclude ' => $post->id,
' Showposts ' => 10,
));
Echo ' <ul> ';
foreach ($posts as $post) {
Echo ' <li><a href= '. Get_permalink ($post->id). ' " > '. $post->post_title. ' </a></li> ';
}
Echo ' </ul> ';
}
?>
</div>

The title is "the latest article under the WordPress Basics Tutorial," and then the rest of it should be easy to read.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.