Forum Replies Created

Viewing 1 replies (of 1 total)
  • Hi guys, just wanted to say thank you for solving a big problem of mine.

    I made a template based on the showcase-template and edited the code starting on line 156:

    // Display our recent posts, showing full content for the very latest, ignoring Aside posts.
    $recent_args = array(
    'order' => 'DESC',
    'post__not_in' => get_option( 'sticky_posts' ),

    to:

    // Display our recent posts, showing full content for the very latest, ignoring Aside posts.
    $recent_args = array(
    'order' => 'DESC',
    'category_name' => 'category-slug',

    … And it did just what I needed it to do: show only posts from that certain category using its slug (category-slug as an example) on certain pages.

    I guess this was what you both meant?

    Again, thanks!

Viewing 1 replies (of 1 total)