• I am using a colorways theme, and I would like to change the blog session on my front page to a review category. In order words, I only want my latest product review post to appear on my front page.

    I do not want other types of post to be on the front blog session (the 3 post on the home page). Can you guide me please?

    If is not possible, then I would like to remove the blogging session and make it look like this http://www.cakethyme.com

    Oh yea, the website which I wish to make adjustment is http://www.magicalselfiestick.com

    Thanks for your help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author inkthemescom

    (@inkthemescom)

    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

    1. Dashboard-> Posts-> All Posts.
    2. Now Edit any post
    3. Find option “Categories”
    4. click on Add New Category text
    5. Write your category name for example ‘latest post’
    6. 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.

    Thread Starter shaunwong0311

    (@shaunwong0311)

    Wow! Really helpful. Really love the support from you guys! I will definitely try it out and inform you about the outcome.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Configuring my front page blogging session’ is closed to new replies.