*/ define( 'BOXWP_PROURL', 'https://themesdna.com/boxwp-pro-wordpress-theme/' ); define( 'BOXWP_CONTACTURL', 'https://themesdna.com/contact/' ); define( 'BOXWP_THEMEOPTIONSDIR', get_template_directory() . '/inc/admin' ); // Add new constant that returns true if WooCommerce is active define( 'BOXWP_WOOCOMMERCE_ACTIVE', class_exists( 'WooCommerce' ) ); require_once( BOXWP_THEMEOPTIONSDIR . '/customizer.php' ); function boxwp_get_option($option) { $boxwp_options = get_option('boxwp_options'); if ((is_array($boxwp_options)) && (array_key_exists($option, $boxwp_options))) { return $boxwp_options[$option]; } else { return ''; } } if ( ! function_exists( 'boxwp_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function boxwp_setup() { global $wp_version; /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on BoxWP, use a find and replace * to change 'boxwp' to the name of your theme in all the template files. */ load_theme_textdomain( 'boxwp', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for Post Thumbnails on posts and pages. * * @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ add_theme_support( 'post-thumbnails' ); if ( function_exists( 'add_image_size' ) ) { add_image_size( 'boxwp-large-image', 1056, 9999, false ); add_image_size( 'boxwp-featured-image', 708, 9999, false ); add_image_size( 'boxwp-horizontal-image', 480, 360, true ); add_image_size( 'boxwp-square-image', 480, 480, true ); add_image_size( 'boxwp-vertical-image', 480, 640, true ); add_image_size( 'boxwp-hauto-image', 480, 9999, false ); add_image_size( 'boxwp-mini-image', 100, 100, true ); } // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__('Primary Menu', 'boxwp'), 'secondary' => esc_html__('Secondary Menu', 'boxwp') ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ $markup = array( 'comment-list', 'comment-form', 'search-form', 'gallery', 'caption' ); add_theme_support( 'html5', $markup ); add_theme_support( 'custom-logo', array( 'height' => 80, 'width' => 315, 'flex-height' => true, 'flex-width' => true, 'header-text' => array( 'site-title', 'site-description' ), ) ); // Support for Custom Header add_theme_support( 'custom-header', apply_filters( 'boxwp_custom_header_args', array( 'default-image' => '', 'default-text-color' => '333333', 'width' => 1090, 'height' => 200, 'flex-height' => true, 'wp-head-callback' => 'boxwp_header_style', 'uploads' => true, ) ) ); // Set up the WordPress core custom background feature. $background_args = array( 'default-color' => 'dddddd', 'default-image' => get_template_directory_uri() .'/assets/images/background.png', 'default-repeat' => 'repeat', 'default-position-x' => 'left', 'default-position-y' => 'top', 'default-size' => 'auto', 'default-attachment' => 'fixed', 'wp-head-callback' => '_custom_background_cb', 'admin-head-callback' => 'admin_head_callback_func', 'admin-preview-callback' => 'admin_preview_callback_func', ); add_theme_support( 'custom-background', apply_filters( 'boxwp_custom_background_args', $background_args) ); // Support for Custom Editor Style add_editor_style( 'css/editor-style.css' ); } endif; add_action( 'after_setup_theme', 'boxwp_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function boxwp_content_width() { $content_width = 708; if( is_singular() ) { if ( is_page_template( array( 'template-full-width-page.php', 'template-full-width-page-sidebar.php', 'template-full-width-post.php', 'template-full-width-post-sidebar.php', 'template-contact-page.php', 'template-sitemap.php', 'template-site-authors.php' ) ) ) { $content_width = 1056; } } else { if ( is_404() ) { $content_width = 1056; } } $GLOBALS['content_width'] = apply_filters( 'boxwp_content_width', $content_width ); } add_action( 'template_redirect', 'boxwp_content_width', 0 ); require_once( trailingslashit( get_template_directory() ) . 'inc/functions/enqueue-scripts.php' ); require_once( trailingslashit( get_template_directory() ) . 'inc/functions/widgets-init.php' ); require_once( trailingslashit( get_template_directory() ) . 'inc/functions/social-buttons.php' ); require_once( trailingslashit( get_template_directory() ) . 'inc/functions/author-bio-box.php' ); require_once( trailingslashit( get_template_directory() ) . 'inc/functions/postmeta.php' ); require_once( trailingslashit( get_template_directory() ) . 'inc/functions/posts-navigation.php' ); require_once( trailingslashit( get_template_directory() ) . 'inc/functions/menu.php' ); require_once( trailingslashit( get_template_directory() ) . 'inc/functions/other.php' ); require_once( trailingslashit( get_template_directory() ) . 'inc/admin/custom.php' );