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 https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); add_theme_support( 'custom-logo', array( 'height' => 100, 'width' => 400, 'flex-height' => true, 'flex-width' => true, 'header-text' => array( 'site-title', 'site-description' ), ) ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary-nav' => esc_html__( 'Primary Navigation', 'calibar' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'calibar_custom_background_args', array( 'default-color' => 'ffffff', ) ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); add_image_size( 'calibar-image-thumb', 850, 450, true ); } endif; add_action( 'after_setup_theme', 'calibar_setup' ); /** * Hide site title and description when a custom logo is present. * * @filter calibar_the_site_title * @filter calibar_the_site_description * @since 1.0.0 * * @param string $html * * @return string|null */ function calibar_the_site_title( $html ) { return calibar_has_custom_logo() ? null : $html; } add_filter( 'calibar_the_site_title', 'calibar_the_site_title' ); add_filter( 'calibar_the_site_description', 'calibar_the_site_title' ); /** * 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 calibar_content_width() { // This variable is intended to be overruled from themes. // Open WPCS issue: {@link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/issues/1043}. // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound $GLOBALS['content_width'] = apply_filters( 'calibar_content_width', 1170 ); } add_action( 'after_setup_theme', 'calibar_content_width', 0 ); /** * Include custom files for TR theme */ require CALIBAR_LIB_PATH . 'tr.enqueue.php'; require CALIBAR_LIB_PATH . 'tr.breadcrumb.php'; require CALIBAR_INC_PATH . 'actions.config.php'; require CALIBAR_INC_PATH . 'template.tags.php'; require CALIBAR_INC_PATH . 'template.functions.php'; require CALIBAR_INC_PATH . 'customizer.php'; require CALIBAR_LIB_PATH . 'tr.navwalker.php'; require CALIBAR_LIB_PATH . 'tr.sidebar.php'; /** * Load Jetpack compatibility file. */ if ( defined( 'JETPACK__VERSION' ) ) { require CALIBAR_INC_PATH . 'jetpack.php'; } /** * Include admin options for tr theme */ if ( class_exists('Themeregion_Companion') ) { require CALIBAR_ADMIN_PATH . 'tr.metabox.php'; require CALIBAR_LIB_PATH . 'tr.demo.importer.php'; } if ( class_exists('ReduxFrameworkPlugin') ) { require CALIBAR_ADMIN_PATH . 'tr.options.php'; } require CALIBAR_LIB_PATH . 'tr.sidebar.php'; // Dissmiss Notice require CALIBAR_LIB_PATH . 'calibar-admin-notices-dismissal.php'; /* * Calibar TGMPA Integration */ require CALIBAR_LIB_PATH . 'class-tgm-plugin-activation.php'; require CALIBAR_ADMIN_PATH . 'tr.required.plugins.php'; function calibar_dash_menu() { add_theme_page( __( 'Calibar', 'calibar' ), __( 'Calibar', 'calibar' ), 'manage_options', 'calibar-dashboard', 'calibar_load_dashboard_page' ); } add_action( 'admin_menu', 'calibar_dash_menu' ); function calibar_load_dashboard_page() { get_template_part( 'inc/admin/template', 'dashboard' ); } // if (is_admin() && isset($_GET['activated']) && $pagenow == "themes.php") // wp_redirect('themes.php?page=calibar-dashboard');