stock WordPress functions
// Turn on core updates
define( 'WP_AUTO_UPDATE_CORE', true );
// Turn on plugin updates
add_filter( 'auto_update_plugin', '__return_true' );
// Turn on theme updates
add_filter( 'auto_update_theme', '__return_true' );
// Media - set default image link location to 'None'
update_option('image_default_link_type','none');
// Always Show Kitchen Sink in WYSIWYG Editor
add_filter( 'tiny_mce_before_init',
function ( $args ) {
$args['wordpress_adv_hidden'] = false;
return $args;
}
);