• Resolved xpinx2pin

    (@xpinx2pin)


    Hi,

    I wonder how to select specify category on front page?

    Let’s say, i only want show “News” and “Event” category on my front page.

    Thanks

Viewing 1 replies (of 1 total)
  • Thread Starter xpinx2pin

    (@xpinx2pin)

    i found my self
    1. create child theme
    2. copy index.php to child theme
    3. find this code
    <?php if (have_posts()) : while (have_posts()) : the_post();
    4. replace with this code

    <?php
    			$the_query = new WP_Query( 'cat=7' );
    		?>
    		<?php if ($the_query->have_posts()) : while ($the_query->have_posts()) : $the_query->the_post();

    where cat=[category ID]

Viewing 1 replies (of 1 total)
  • The topic ‘Select specific category on front page’ is closed to new replies.