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.