My functions.php is this:
Could please modify it here for me to copy it? Thanks.
<?php
// ensure EXT is defined
if ( ! defined('EXT')) {
define('EXT', '.php');
}
#
# See: wpgrade-config.php -> include-paths for additional theme specific
# function and class includes
#
// Theme specific settings
// -----------------------
// add theme support for post formats
// child themes note: use the after_setup_theme hook with a callback
$formats = array('quote', 'video', 'audio', 'gallery');
add_theme_support('post-formats', $formats);
add_theme_support( 'woocommerce' );
// Initialize system core
// ----------------------
require_once 'wpgrade-core/bootstrap'.EXT;
#
# Please perform any initialization via options in wpgrade-config and
# calls in wpgrade-core/bootstrap. Required for testing.
#
/**
* https://codex.www.ads-software.com/Content_Width
*/
if ( ! isset($content_width)) {
$content_width = 960;
}