bopuc
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: adding blogroll links: symbols in the urlThat’s totally a bug. We shouldn’t have to manually urlencode URLs.
(might I remind you that Flickr URLs contain “@”s)
Forum: Fixing WordPress
In reply to: boolean queries for multiple categoriesWordPress by default allows “<A href=”http://www.internettutorials.net/boolean.html”>Boolean OR” category queries, meaning you can ask for all posts in Cat A or Cat B (meaning you will get everything categorized as either). This is of course done with the “ugly” permailink structure URI where the query string looks somenthign like index.php?cat=1,2,3″
What you are asking for is a Boolean “AND”, which is what I am looking for as well and no one seems to have documented (or I too have yet to find). In fact I need more than that.. I need (1 OR 2) AND 3, as well as (1 and 2) OR 3… and more. I need totally flexible Boolean post queries… 😉
Anyone have any ideas/pointers/etc?
Forum: Fixing WordPress
In reply to: WordPress memory usage problemAll I’ll say is, take an average sized WP weblog, pop in print_r($_GLOBALS), copy and paste the array it prints into a text file and weight it. Also marvel at the headscratching amount of stuff in there. If I undertsand correctly, WP shoots this missile into PHP’s brain on *every page load*.
Also ask yourself why the template tag that creates a list of authors and a count of their entries hits the database an exponentially growing number of times with every additional author. (I was up to like a bazillion SQL queries for that so I had to write my own which does the trick in one… and I run that on a CRON and include the output. Waste not want not.)
doggerel.
Forum: Fixing WordPress
In reply to: /feed/atom/ and feed/rdf validation error in 1.5.1.3Just to correct macmanx: RSS 1.0 is not “out of date”. RSS 1.0 is an application of RDF (Resource Descriptive Framework), created for web content syndication. Something that is “complete” is not “out of date”.
🙂Forum: Plugins
In reply to: More efficient author list codeI did. 😉