Server IP : 192.158.238.246 / Your IP : 18.191.53.120 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/jenniferflocom/www/wp-content/themes/simple-glassy/inc/ |
Upload File : |
<?php /** * Theme basic setup * * @package SimpleGlassy */ // Exit if accessed directly. defined( 'ABSPATH' ) || exit; // Set the content width based on the theme's design and stylesheet. if ( ! isset( $content_width ) ) { $content_width = 606; /* pixels */ } add_action( 'after_setup_theme', 'simpleglassy_setup' ); if ( ! function_exists( 'simpleglassy_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 simpleglassy_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on simple-glassy, use a find and replace * to change 'simple-glassy' to the name of your theme in all the template files */ load_theme_textdomain( 'simple-glassy', 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 <title> tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => __( 'Primary Menu', 'simple-glassy' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'comment-form', 'comment-list', 'gallery', 'caption', 'script', 'style' ) ); /* * Adding Thumbnail basic support */ add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 400, 300, true ); /* * Adding support for Widget edit icons in customizer */ add_theme_support( 'customize-selective-refresh-widgets' ); /* * Enable support for Post Formats. * See http://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array( 'aside', 'image', 'gallery', 'video', 'quote', 'link' ) ); // Set up the WordPress Theme logo feature. add_theme_support( 'custom-logo' ); // Enable support for custom background color and image $simpledark_default_cb = array( 'default-color' => 'ff3399', 'default-image' => get_template_directory_uri() . '/images/sg-default-bg.jpg' ); add_theme_support( 'custom-background', $simpledark_default_cb ); // Add support for responsive embedded content. add_theme_support( 'responsive-embeds' ); // Check and setup theme default settings. simpleglassy_setup_theme_default_settings(); } }