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' ); // 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', 'default-image' => '', ) ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); /** * Add support for core custom logo. * * @link https://codex.wordpress.org/Theme_Logo */ add_theme_support( 'custom-logo', array( 'height' => 250, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ) ); add_image_size( 'calibar-image-thumb', 850, 450, true ); } endif; add_action( 'after_setup_theme', 'calibar_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 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', 640 ); } add_action( 'after_setup_theme', 'calibar_content_width', 0 ); function eats_disable_gutenberg($is_enabled, $post_type) { if ($post_type === 'menu_cpt') return false; // change book to your post type return $is_enabled; } add_filter('gutenberg_can_edit_post_type', 'eats_disable_gutenberg'); /** * 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 . 'custom.header.php'; require CALIBAR_INC_PATH . 'template.tags.php'; require CALIBAR_INC_PATH . 'template.functions.php'; require CALIBAR_INC_PATH . 'comments.callback.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('Calibar_Core') ) { 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'; /* * Calibar TGMPA Integration */ require CALIBAR_LIB_PATH . 'class-tgm-plugin-activation.php'; require CALIBAR_ADMIN_PATH . 'tr.required.plugins.php';