Archive for 'WordPress' Category


Next Page »

Where can I find free Wordpress themes : TagWarrior

8 August 2008

Question: Where can I find free Wordpress themes
Answer: TagWarrior

Wordpress Themes
Our aim was to collect the best from the best under one roof. We are keeping track of fresh WP themes. Every month we search around for the recently released WordPress themes and present them to our visitors.

How to delete revision rows in Wordpress v2.6 database

1 August 2008

Problem: How to delete revision rows in Wordpress v2.6 database
Solution: Run the following SQL

DELETE a,b,c
FROM wp_posts a
LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)
LEFT JOIN wp_postmeta c ON (a.ID = c.post_id)
WHERE a.post_type = ‘revision’

Delete Wordpress 2.6 Revisions | Andrei Neculau
Delete Wordpress 2.6 Revisions

How to turn off post revisions in Wordpress v2.6

1 August 2008

Problem: How to turn off post revisions in Wordpress v2.6
Solution: Add
define(’WP_POST_REVISIONS’, false);
to wp-config.php

Blog ยป How To Turn Off Post Revision In WordPress 2.6 | lesterchan.net/wordpress
How To Turn Off Post Revision In WordPress 2.6


Next Page »