WordPress has this annoying “feature” where it lets you choose how many posts to display on one page. If I was a blogger with many short posts several times a day, then I’d probably choose to have a lot of posts on the front page. Since my posts are either long or image-heavy, I usually limit the front page to 6 posts.
The problem is that WordPress uses this value for how many posts to display on archive pages as well. Viewing the archives (categorical or monthly) six posts at a time is just annoying. Archive pages just show titles and an excerpt of the text with all of the images stripped out, so there is no reason not to lists lots and lots of them. No reason except that WordPress won’t let me do it.
Grrr.
I’ve fiddled with the archive pages so that category archives now show all of the posts on one page. This was harder than it should have been.
The upshot of all of this is that the DM of the Rings posts are all gathered together on one page, which is something I notice a lot of people have been asking for.
Charging More for a Worse Product
No, game prices don't "need" to go up. That's not how supply and demand works. Instead, the publishers need to be smarter about where they spend their money.
Ludonarrative Dissonance
What is this silly word, why did some people get so irritated by it, and why did it fall out of use?
Self-Balancing Gameplay
There's a wonderful way to balance difficulty in RPGs, and designers try to prevent it. For some reason.
Skyrim Thieves Guild
The Thieves Guild quest in Skyrim is a vortex of disjointed plot-holes, contrivances, and nonsense.
Twelve Years
Even allegedly smart people can make life-changing blunders that seem very, very obvious in retrospect.
T w e n t y S i d e d
Bye-bye bandwidth!
WP has some really annoying features at times. I’ve been going slowly crazy trying to deal with the WYSIWYG interface. Lots of times, I’d rather just shut the damn thing off, but NOOOOOOOOOOOO, you can’t do that. You can call up an HTML screen and edit that, but forget just doing the whole thing in HTML. I wouldn’t care, but you can’t do tables in WP’s WYSIWYG…
In WP 2.0+, got to the “users” tab in the admin panel. At the bottom, un-check the “Use the visual rich editor when writing” box.
I’ve submitted a bug report, suggesting that this box should be re-labeled “drive me to the very brink of madness with the WYSIWYG editor.”
We’ll see if that change shows up in the next release.
I was just looking into something similar. Did you end up using query_posts(“cat=2&showposts=99”) or something similar? Or is there a handier way of doing it?
I didn’t try “showposts”. The Codex is happy to tell you all about modifying queries, but the actual parameters of queries must be sooper seekrit, since I couldn’t find much. I wanted 50 posts per page, but the “prev page” and “next page” links didn’t work right when I modified the post count. What I ended up doing was:
query_posts (“&posts_per_page=-1&cat=$cat&order=ASC”);
Since setting “posts_per_page” to -1 will make it show all, it doesn’t matter that the Prev/Next links don’t work.
i dunno. wordpress has been nifty every time i’ve played with it, but i can’t wrap my poor sober brain around its quirks.