CodeHQ

Posts Tagged ‘Support’

|

Limit WordPress Revisions

Tuesday, January 9th, 2018

Add this to you wp-config.php file and change the number for how many revisions you want to limit your pages to:

define('WP_POST_REVISIONS', 10);

Or use the below to globally turn off post revisions:

define('WP_POST_REVISIONS', false);

Tags: , , , , , , , , ,
Posted in PHP, WordPress | No Comments »

Add thumbnail theme support | WordPress

Friday, September 30th, 2016

Add this to the functions.php file.

add_theme_support( 'post-thumbnails' ); 

Tags: , , , ,
Posted in PHP, WordPress | No Comments »