Nuuzeli
Forum Replies Created
-
Thank you so much! That helped! 🙂
Forum: Fixing WordPress
In reply to: Jumping menu items, spreading out search form etc.Thank you so much alchymyth! It worked like charm! 🙂
The ID’s are correct. The general news archive displays posts from category 1, and the games news archive displays posts from category 3.
For general news archive I have
<?php query_posts('cat=1', 'showposts=100');And for games news archive
<?php query_posts('cat=3', 'showposts=100');(P.S. Changed the original code I posted here to a more simple one, both work the same way)
Somehow the cat messes up the showposts=100, but I don’t know how. Maybe the showposts=100 works only on posts that are not categorized?
Yes, this is the exact same theme I built from scratch. It’s a VERY simple theme and doesn’t even have search, 404, etc.
If I remove the cat, both archives display all posts from both categories. When the cat is removed, showposts=100 works, but when I put the cat back, it stops working. So weird.
Forum: Fixing WordPress
In reply to: Different CSS for widgets depending on their countThanks alchymyth, I’ll take a look into that! 🙂