Answers for "turn post revisions wordpress"

PHP
0

wordpress post revisions config

// Inside wp-config.php -> LIMIT POST REVISIONS to 8
define( 'WP_POST_REVISIONS', 8 );
Posted by: Guest on January-25-2021
0

wordpress delete post revisions older than date "sql"

DELETE a,b,c FROM wp_posts a WHERE a.post_type = 'revision' LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id) LEFT JOIN wp_postmeta c ON (a.ID = c.post_id);
Posted by: Guest on May-13-2021

Browse Popular Code Answers by Language