600, 'width' => 1360, 'flex-height' => true, 'flex-width' => true, 'header-text' => array( 'site-title', 'site-description-text', ) ) ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'comment-list', 'gallery', 'caption', ) ); /* * Remove themes' post formats support */ remove_theme_support( 'post-formats' ); /* * Add the editor style and fonts */ add_editor_style( array( julia_google_fonts_url(), 'editor-style.css', ) ); /* * Enable support for Visible Edit Shortcuts in the Customizer Preview * * @link https://make.wordpress.org/core/2016/11/10/visible-edit-shortcuts-in-the-customizer-preview/ */ add_theme_support( 'customize-selective-refresh-widgets' ); } } add_action( 'after_setup_theme', 'julia_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 julia_content_width() { $GLOBALS['content_width'] = apply_filters( 'julia_content_width', 720 ); } add_action( 'after_setup_theme', 'julia_content_width', 0 ); function julia_custom_tiled_gallery_width() { $width = pixelgrade_option( 'main_content_container_width', 1300 ); if ( is_active_sidebar( 'sidebar-1' ) ) { $width = pixelgrade_option( 'main_content_container_width', 1300 ) - 300 - 56; } return $width; } add_filter( 'tiled_gallery_content_width', 'julia_custom_tiled_gallery_width' ); /** * Enqueue scripts and styles. */ function julia_scripts() { $theme = wp_get_theme(); $main_style_deps = array(); /* Default Google Fonts */ wp_enqueue_style( 'julia-google-fonts', julia_google_fonts_url() ); /* Default Self-hosted Fonts should be loaded when Customify is off */ if ( ! class_exists( 'PixCustomifyPlugin' ) ) { wp_enqueue_style( 'julia-fonts-charter', julia_charter_font_url() ); $main_style_deps[] = 'julia-fonts-charter'; wp_enqueue_style( 'julia-fonts-hkgrotesk', julia_hkgrotesk_font_url() ); $main_style_deps[] = 'julia-fonts-hkgrotesk'; } /* The main theme stylesheet */ if ( ! is_rtl() ) { wp_enqueue_style( 'julia-style', get_stylesheet_uri(), $main_style_deps, $theme->get( 'Version' ) ); } /* Scripts */ //The main script wp_enqueue_script( 'julia-commons-scripts', get_theme_file_uri( '/assets/js/commons.js' ), array( 'jquery' ), $theme->get( 'Version' ), true ); wp_enqueue_script( 'julia-scripts', get_theme_file_uri( '/assets/js/app.bundle.js' ), array( 'julia-commons-scripts' ), $theme->get( 'Version' ), true ); $localization_array = array( 'ajaxurl' => admin_url( 'admin-ajax.php' ), ); wp_localize_script( 'julia-main-scripts', 'juliaStrings', $localization_array ); } add_action( 'wp_enqueue_scripts', 'julia_scripts' ); function julia_load_wp_admin_style() { wp_register_style( 'julia_wp_admin_css', get_template_directory_uri() . '/admin.css', false, '1.0.0' ); wp_enqueue_style( 'julia_wp_admin_css' ); } add_action( 'admin_enqueue_scripts', 'julia_load_wp_admin_style' ); /* * ================================================== * Load all the files directly in the `inc` directory * ================================================== */ pixelgrade_autoload_dir( 'inc' );