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 $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.
Related Posts
-
September 20, 2012
Popular
Editor’s Pick
-
February 4, 2010 20+ incredible Gigapixel Photography Inspirations
Gigapixel photography is a new trend that has come about in the last few years, creating 1,000+ megapixels of data in single images, cropped together to create a monstrous image. The detail and spectrum that can be captured in a Giga pixel image is unlike that of anything that a single camera can capture. For…
-
November 20, 2010 Ultimate List of Portable Applications for USB Stick
Create Portable Applications CEEDO Portable Application creator Ceedo is something similar to Mojopac and will let you port your operating system to your USB drive. Ceedo uses virtualisation technology and algorithms to acheive this. Ceedo is also not free and you need license to use both Ceedo Personal and Ceedo Enterprise. Download Here Prayaya…
-
December 7, 2010 20+ Amazing Time-lapse Photography Inspirations
Today i have come up with an interesting photography technique named “Time-lapse Photography”. It’s somewhat related to Long Exposure Photography, but here all the individual shots are combined together to form a slow motion video. In Time-lapse Photography, the same subject will be captured which will spread out over a period of time. Each frame…
-
October 29, 2012 9gag Clone Blogger Theme
Yo Fellas! Hope you are having a great time.I have been busy with server migration and web design works lately. At last i have got some time to write a quick post. In this post, I am looking to distribute my another Blogger template called “9Gag Clone”. Yes, as the name suggests its a 9gag.com…
-
April 30, 2023 Maximizing Performance with useLayoutEffect React Hook
Discover how to optimize your React apps with our comprehensive guide on ‘Maximizing Performance with useLayoutEffect React Hook’. Learn how to leverage this powerful hook for efficient DOM manipulation, eliminating visual glitches, and creating smoother transitions. Ideal for both novice and expert React developers.