• I appologize if this has been asked and answered, however I wasn’t able to find it anywhere. I am new to WP and recently installed it on my site. Whenever I load the page, all of the posts for both categories show on the main page. If I click on one of the categories only the posts from that category will show, but I want the site to load only showing the posts from the general category. What am I doing wrong?

Viewing 4 replies - 1 through 4 (of 4 total)
  • I am trying to achieve the same thing as the original poster. I grabbed the plugin and dropped it in the appropriate directory & activated it in WP – now what? I’m missing something somewhere . . .

    Check the readme in the zip for the correct syntax to use.

    Thread Starter merick_vega

    (@merick_vega)

    so, I tried the plugin but that ended up not being what I needed. Instead I was able to do what I needed by adding the following code to first line of the index.php file.
    “<?php
    if ((empty($_GET[‘cat’]))&&(!preg_match(‘/wp-admin/’, $_SERVER[‘REQUEST_URI’])))
    $cat = ‘1’;
    /* Don’t remove this line. */
    require(‘./wp-blog-header.php’);
    ?>”
    thanks for your help though.

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

The topic ‘Posts for all categories showing’ is closed to new replies.