![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/intellicart.co/wp-content/themes/framey/inc/ |
<?php /** * Custom template tags for this theme * * Eventually, some of the functionality here could be replaced by core features. * * @package uicore-theme */ defined('ABSPATH') || exit; if (!function_exists('uicore_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 uicore_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on uicore, use a find and replace * to change 'framey' to the name of your theme in all the template files. */ load_theme_textdomain('framey', get_template_directory() . '/languages'); /* * 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('responsive-embeds'); // This theme uses wp_nav_menu() in one location. register_nav_menus(array( 'primary' => esc_html__('Primary', 'framey'), )); add_theme_support('html5', array('comment-list', 'comment-form', 'gallery','script', 'style')); // Add theme support for selective refresh for widgets. add_theme_support('customize-selective-refresh-widgets'); add_image_size( 'uicore-medium', 650, 650, false ); //Required add_theme_support( 'automatic-feed-links' ); add_theme_support( "title-tag" ); // Add support for editor styles. add_theme_support('editor-styles'); if (!class_exists('\UiCore\Core')) { add_editor_style(); $font_url = add_query_arg( 'family', urlencode_deep( 'Public Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800' ), "//fonts.googleapis.com/css2" ); add_editor_style($font_url); } else { add_theme_support('align-wide'); } } endif; add_action('after_setup_theme', 'uicore_setup');