Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi!

    I had the same issue 5 minutes ago.
    For my blog page I excluded a category and I think this somehow didn’t work properly with the multiple pages and the custom url-formatting.

    The solution in my case was to slightly adapt the post query. I added the query_string tag and now it works out fine:

    changed:
    <?php if (is_home()) { query_posts(cat=-4");} ?>

    into:
    <?php if (is_home()) { query_posts($query_string . "&cat=-4");} ?>

    Hope that my help you.
    flo

    jaldrich: thanks a lot! thats great. works now

    charliestout: yes, actually if you modify these few lines the plugin works in wp 2.3.

    i got one more thing i dont know how to accomplish: can i somehow bind a user to multiple categories? didnt work out for me yet.

    hi!
    thanks for the update php-file. i wonder if its possible to have the categories hidden the user cant post in.
    so that the users aren’t confused by all the different categories…?

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