Before you ask please READ THIS

Stiky post on homepage

edited December 2011 in Airlock Posts: 15
Hello ,
any ideas how to show stiky posts on homepage ( blog section )?

Comments

  • AirAir
    Posts: 10,970
    Line 45 in front-page.php

    $hp_blog_title = trim( $apollo13->get_option( 'design_options', 'hp_blog_title' ) );
    $args = array(
    'posts_per_page' => $apollo13->get_option( 'design_options', 'no_of_latest_posts' ),
    'post_type' => 'post',
    'post_status' => 'publish',
    'ignore_sticky_posts' => true,

    delete last line or change its value to false:

    'ignore_sticky_posts' => false,

    Don't mistake with same entry for portfolio section.

    It should do the work :-)

    With regards.
  • Posts: 15
    Great ! Thank you !
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!