Sidebar, Wordpress

Show Recent Posts from a particular term in Custom Taxonomy

2 25

Since the introduction of Custom taxonomies and custom post types, Many WordPress users started using them. I am one of those developers who have used custom taxonomies in my recent website called Windows7themer. In windows 7 themer, I have used custom taxonomy called “Windows 7 utilities”. Windows 7 utilities contains terms such as Themes, Screensavers, rainmeter themes, visual styles, etc. So i wanted to show recent posts from each of those terms in sidebar. So i started working on showing recent posts from particular term in a custom taxonomy. Now i have even applied it for smashingtips as well as i created a custom taxonomy called hacks for grouping WordPress hacks. Now let us see the code and its implementation.


Know the Code
PHP Snippet

<?php

$args = array( 'taxonomy'=>'Hacks','term'=>'theme-functions','posts_per_page'=>5 );

$action_films = new WP_Query( $args );

while( $action_films->have_posts() ) : $action_films->the_post();

?>

<!-- recent posts list style goes here-->


<?php endwhile; ?>      

In the above PHP snippet, you need to edit two lines.


$args = array( 'taxonomy'=>'utilities','term'=>'themes','posts_per_page'=>5 );

In the above line, ‘Utilities’ represents my custom taxonomy name. Remember this is case sensitive, so you must type the custom taxonomy name same as you typed while creating.


'term'=>'theme-functions'

I am trying to show posts from the term ‘themes’ in custom taxonomy called “Utilities”. So you must type the name as you see in the term slug.


'posts_per_page'=>5

This is used to control the number of posts you want to show under that particular term in the custom taxonomy.


<!-- recent posts list style goes here-->

It is the area in which you need to add the code to display the recent posts. If you just want to display list of recent posts without any thumbnail, then you can use the following code in that area.


<li><a title="<?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li>

If you want to show recent posts along with thumbnail and other data such as number of comments and date, then use the following code.


<li>

<?php echo get_the_post_thumbnail($id, array(50,50) );?>

<a title="<?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark">

<?php the_title(); ?>
</a>

<span class="meta"><?php the_date(); ?> | <?php comments_number(__('No Comments'), __('1 Comment'), __('% Comments')); 
?>
</span>

</li>

Here I am using the default get_the_post_thumbnail() function to get the thumbnail. But the theme developers may use different ways to get the thumbnails. For example, some still use the old “Custom fields” to get the thumbnail image. So please add corresponding code to get your thumbnail, anyhow for most of the newer themes get_the_post_thumbnail() will work fine.


<?php echo get_the_post_thumbnail($id, array(50,50) );?>

In the above line, the numbers within the array 50,50 represents the image height and width. Try changing it to suit your sidebar design.

Implementation of Code

Let’s see the final code to implement in your blog.

Recent Posts without Thumbnail


<?php

$args = array( 'taxonomy'=>'Hacks','term'=>'theme-functions','posts_per_page'=>5 );

$action_films = new WP_Query( $args );

while( $action_films->have_posts() ) : $action_films->the_post();

?>

<li><a title="<?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li>


<?php endwhile; ?>      

Recent Posts with Thumbnail


<?php

$args = array( 'taxonomy'=>'Hacks','term'=>'theme-functions','posts_per_page'=>5 );

$action_films = new WP_Query( $args );

while( $action_films->have_posts() ) : $action_films->the_post();

?>


<li>
<?php echo get_the_post_thumbnail($id, array(50,50) );?>

<a title="<?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark">
<?php the_title(); ?>
</a>
<span class="meta"><?php the_date(); ?> | <?php comments_number(__('No Comments'), __('1 Comment'), __('% Comments')); ?></span>
</li>

<?php endwhile; ?>      

Conclusion

You need to place those codes in your template to show the recent posts from a particular term in custom taxonomy of wordpress. I guess that this article will be useful to you all. As we all know, in WordPress we can do same thing in different ways. If you have any other alternative please let me know. I will add your trick with credit to your blog.

About the author / 

admin

Related Posts

Popular

Editor’s Pick

  • How to set up navigation menus

    Navigation is certainly a very important part in web design, especially if we keep in mind that the navigation of a page is there to orient and guide the user. Navigation is a key element of any website. With the help of navigation menu, the user gets from section to section, and to different contents….

  • Add User Generated Content To A WordPress Site

    There are several ways to let users submit content in wordpress. You might have noticed in most of they blogs, they will have a submission form in sidebar or a separate page to let fella bloggers to submit posts. The post submission form consists of input fields like URL, Author Name, Tags, Post Title, Content,…

  • 200+ Ultimate Collection of Photoshop Plugins

    Photoshop is a powerful image editing software which is very useful for web designers and photographers to create desired effects in the images. But sometimes it’s difficult to perform certain tasks manually in photoshop. Once there was a belief that only designers who have mastered photoshop can create special effects on photographs or images. But…

  • WhatsApp Multiple Device Log-in: Simplify Staying Connected Across Devices

    WhatsApp, which is a widely used messaging platform, is introducing a game-changing feature that will allow users to log into their WhatsApp account on multiple devices. This much-awaited update aims to simplify staying connected across devices by making it easier for users to maintain their chats. In this comprehensive guide, we will explore the benefits…

  • Transforming Software Development: How AutoGPT is Revolutionizing Content Creation and 5 Expert Tips to Maximize Its Potential

    Are you tired of spending hours writing documentation and code comments for your software projects? Do you wish you could automate these tedious tasks and focus on more creative aspects of development? Look no further than AutoGPT. AutoGPT is a revolutionary tool that is transforming the way developers approach content creation in the software development…