Adding Similar or Like Posts to my WordPress Website

wordpresstutuorial.relatedpostsOften times as you blog, you would like to be able to link to other posts that are similar to the current post. “Similar” posts can be defined by posts with the same categories or tags. Pulling similar posts based on categories and tags is a very simple PHP script that can be added to any hook in any popular theme like Thesis or Genesis. The example that I’m going to show is defined in the wp-content/themes/thesis_18x/custom/custom_functions.php file in the thesis 1.8.x theme.

relatedposts

Step 1. Open up the custom_functions.php file in your thesis themes custom folder and paste in the following action hook (This code will tell WP to execute the “show_similar_posts” function after a post):

<?php add_action('thesis_hook_after_post','show_similar_posts'); ?>

Step 2. Paste the following code into the same code block (<?php ?>)

[rendercode:similarposts]

Step 3. Modify the parameters in the section called “set parameters”. There are five different parameters available.

  • $num_posts = 5; //Any number of posts within reason
  • $order_by = “post_date”; //Any value defined here.
  • $order_dir = “ASC”; //ASC – Ascending or DESC – Descending order
  • $query_by = “tags”; //I created the function to find similar posts by ‘tags’ or by ‘categories’
  • $post_type = “post”; //This can be ‘post’, ‘page’ OR ‘any’

IT IS POSSIBLE TO

ENJOY STRESS FREE HOLIDAYS THIS YEAR!

The holiday season can be downright exhausting. We have too many things to do and not enough time to get them done. The 2024 HOLIDAY PLANNER will not only help you get organized, but will also help melt away that holiday stress so that you can actually enjoy the season!

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *