Customizing WordPress
How to turn off WordPress Post Revisions?
Insert this into “wp-config.php” file
// Turn off WordPress Post Revisions
define('WP_POST_REVISIONS', false);
How to Delete Existing WordPress Post Revisions?
Goto phpMyAdmin –> Select your WordPress database from the sidebar –>Click the SQL tab –> Insert this and click go –>
DELETE FROM wp_posts WHERE post_type = "revision";
How to Limit the Number of Saved Revisions?
Add this to “wp-config.php” changing the number to suit your needs
define ('WP_POST_REVISIONS', 2);
How to Remove all RSS feeds?
Search for the code below in “functions.php” and either remove it or comment it out //
add_theme_support( 'automatic-feed-links' );
How can i deactivate individual JetPack widgets?
On the JetPack dashboard if you click “Learn More” on any of the widgets your see the “Learn More” button changes to “Deactivate”.
