Hi shaunwong0311,
The theme displays latest post by default.
If you want to display some other type of post, for example you want to display post from a single category, then find the code given below in home.php file
<?php query_posts('posts_per_page=3'); ?>
change this line to
<?php query_posts('category_name=Staff Home'); ?>
Change “staff home” to your category name
or give category ID,
<?php query_posts('cat=1'); ?>
If you only want your latest product review post to appears on your front page, then add some category to your latest post and use the above code.
Follow these steps to do so
To create category go to
- Dashboard-> Posts-> All Posts.
- Now Edit any post
- Find option “Categories”
- click on Add New Category text
- Write your category name for example ‘latest post’
- Now click onAdd New Category button
Now Go to particular post which you want to display on home page and check mark ‘latest post’ category and update the post.
Now the code used for this particular category is
<?php query_posts(array( 'category_name' => 'latest-post', 'posts_per_page' => 3 )); ?>
‘posts_per_page’ is to be used for the no. of post show in home page, you can change it to some other no.
You can also visit these links to get more details about the code used for this.
http://codex.wordpress.org/Function_Reference/query_posts
http://codex.wordpress.org/User:JamesVL/query_posts
I think this may resolve your problem. if not them mail us at enquiry@inkthemes.com.
Wow! Really helpful. Really love the support from you guys! I will definitely try it out and inform you about the outcome.