• Hello,
    There’s a section in the home page that shows previews of the last blog entries. I need it to show previews of the pages instead of posts. Can this be done? How?
    I’m using a theme child of Advertica Lite
    Thank you.

Viewing 1 replies (of 1 total)
  • Tanay

    (@tanaykhandelwal-1)

    Hello haniver,

    You can do so by changing the WP_Query param set for post to the particular pages in template-front-page.php

    $advertica_lite_latest_loop = new WP_Query( array( 'post_type' => 'page', 'post__in' => array( 2, 5, 12, 14, 20 ) ) );

    replace the numbers with the page id’s which you wants to show on front. refer WP_Qwery for more.

    please let me know if you run into any issues with it 🙂

    Regards,
    Tanay Khandelwal

Viewing 1 replies (of 1 total)

The topic ‘Show pages in posts section’ is closed to new replies.