antifuse
Forum Replies Created
-
Forum: Plugins
In reply to: How do I display the last 10 posts ?I assume that password protected and private are different, as there is separate functionality for each…
Umm… and what exactly needs fixing in my post?Forum: Themes and Templates
In reply to: What’s with XHTML and <p> tags?Do you have use_balanceTags turned on under Options->General Blog Settings? In general I find that things like this tend to wonk up any entries that have real HTML formatting code in them, so I always turn them off. If you already have it turned off, then there must be something else in the post clean-up/replacement code that is breaking stuff.
Forum: Fixing WordPress
In reply to: change URL pattern in linksYeah… it’s in the permalinks section of the options. The mod_rewrite rules seem to work fine for most people (at least, it works fine and dandy for me and lots of others), so I’m not quite sure what Frank is talking about…
Forum: Requests and Feedback
In reply to: UL and LIYeah… this has been something talked about on these forums several times… the devs are really big on creating semantically correct code, which is rare (and in my opinion refreshing) to see these days, and tends to lead to a lot of confusion from people that just want to display it the easy way, without having to learn CSS too 🙂
Forum: Fixing WordPress
In reply to: rewrite rules. suggested ones don’t workJust out of curiousity, what version of WP are you running? If I recall, I ran into a bug with the category rewrite rule in 1.0, but it was fixed when I upgraded to 1.0.1 and regenerated the rewrite rules.
Forum: Fixing WordPress
In reply to: A little OT: Looking for flash mp3 player for siteThis is one of my biggest pet peeves… I have embedded music turned off for a reason here people! This goes back all the way to people embedding midi files in their pages way back in the day… SO irritating to be browsing the web, and suddenly have some unwanted song blasting out of my speakers (especially when I’m at work… lol)
Forum: Fixing WordPress
In reply to: edit.php refreshes to post.phpYeah… it’s been mentioned a few times… I personally would love to see it go back to the edit page, but I’m too lazy to hack it myself right now 🙂
Forum: Plugins
In reply to: How do I display the last 10 posts ?Private is different from password protected, right?
Forum: Themes and Templates
In reply to: ScrollbarsAlso, keep in mind that some users may not be able to see their scrollbars when they go to your site. I know that in Avant at least, there is a bug that causes the scrollbars to disappear entirely on occasion, when they are set to different colours.
Forum: Requests and Feedback
In reply to: Request: Topic title on posts awaiting moderationbump again… Does nobody else find it irritating that the comments awaiting moderation don’t show what post they belong to?
Forum: Plugins
In reply to: How do I display the last 10 posts ?From the Wiki:
<?php get_archives('postbypost', '10', 'other', '- ', '
- and
', false); ?>
Will give you links to the last 10 posts with
after them. However, it doesn’t let you customize the title of the link… (it just puts in the title of the entry as the title of the link). Ooooh, and I just found a bug in the code that I have to go report. 🙂
Forum: Everything else WordPress
In reply to: MT and WP co-existing in single MySQL db?Yeah… I currently have my WP tables, my old MT tables, my coppermine tables, among others all sitting in my one MySQL db (my hosting provider only allows 1). You don’t really have to worry about overlap because WordPress prefixes all its table names with wp_, while MT tables use mt_ for the default prefix… so unless you change the defaults, you’re good to go.
Forum: Installing WordPress
In reply to: OK, you guys win.Did you check the other IIS thread? I think people were having a decent amount of success over there.
Forum: Requests and Feedback
In reply to: Sub-Categories, at last, BUT….Subcategories aren’t in 1.0.1 Miles… but they ARE (in a rudimentary form) in the nightly builds.
Forum: Requests and Feedback
In reply to: get_archives offset parameterYou probably don’t want to provide entry #, as that would require knowing what the most recent post # is. A simple offset would be nice to start with.
But while we’re talking about the get_archives function, why is limit a string parameter? It should really be an int.