toyg
Forum Replies Created
-
Forum: Plugins
In reply to: Recent Posts Hack: Possible To Add Snippet As Welluhm, you just need to add a few things.
where you have the querySELECT ID, post_title
add, post_excerpt
before “FROM”, and then replace the “output line with$output .= $before . '' . $post_title . ''. $post->post_excerpt . $after;
Forum: Plugins
In reply to: Recent Posts Hack: Possible To Add Snippet As WellI’ve no idea what you’re talking about…
Forum: Requests and Feedback
In reply to: Post Version ControlI’m banging something together right now. Might be ready tomorrow, or the day after that ??
Forum: Plugins
In reply to: WP-Wiki 1.0 releasedThe permalink structure is independent from the plugin (mine is actually very complex, btw). The only requirement is to add
RewriteRule ^([A-Z]+([a-z]|[0-9])+){2,}$ /index.php?wikiword=$0 [QSA]
to your htaccess.
I’ll fix the code as suggested ?? btw, the regex at the moment is far from perfect, any suggestion is very appreciated :))Forum: Plugins
In reply to: WP-Wiki 1.0 releasedUhm, strange… I’ve changed the link anyway, now it should be ok.
Forum: Installing WordPress
In reply to: Old RSS File?Aggregators will certainly follow a redirection, and they usually define the feed format by its content, not its extension. So don’t worry ??
And anyway, theoretically speaking, sending an HTTP status like 301 (moved) , 302 (redirect) or 303 (see other) will signal to the client that there’s some content, but that content might be different from the one requested, so you can’t say you didn’t warn them ;).
You can gently send something like:
header(‘HTTP/1.0 302 Redirect’);
before redirecting with another
header(‘Location: /mynewfeed.rss’);Forum: Requests and Feedback
In reply to: Comment previewsI use Shelley’s code on my site, and I have to say, WP should ship with it enabled by default. There’s no reason not to: it’s self-contained, very short (5 lines of code) and it wont’ even break validation.
Forum: Installing WordPress
In reply to: Old RSS File?redirect them with a mod_rewrite rule that catches all requests to index.rdf and redirects them to the new feed via some 30x HTTP code.
If you don’t know what I’m talking about, give a look at the Options/Permalink page, where it shows the stuff you should put in your .htaccess; it’s basically just a bit of regex. But please be nice, put a 30x header somewhere between the client request and you sending the new feed ??Forum: Installing WordPress
In reply to: how I fixed the “blank page” error(forgot to login, dammit ??
Forum: Fixing WordPress
In reply to: A bug / problem reporting process for allIf you need someone to help with the tracker, I’m here.
And by the way, I’d strongly recommend an effort by the WP team to adopt some kind of automated doc-generator for the codebase, like PhpDocu.