?
Current Path : /home1/savoy/sportsmeet.net/wp-content/themes/livesay/inc/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/sportsmeet.net/wp-content/themes/livesay/inc/theme-support.php |
<?php /* * All theme related setups here. * Author & Copyright: VictorThemes * URL: http://themeforest.net/user/VictorThemes */ /* Set content width */ if ( ! isset( $content_width ) ) $content_width = 1170; /* Register menu */ register_nav_menus( array( 'primary' => esc_html__( 'Main Navigation', 'livesay' ) ) ); /* Thumbnails */ add_theme_support( 'post-thumbnails' ); /* Feeds */ add_theme_support( 'automatic-feed-links' ); /* Add support for Title Tag. */ add_theme_support( 'title-tag' ); /* HTML5 */ add_theme_support( 'html5', array( 'gallery', 'caption' ) ); /* WooCommerce */ add_theme_support( 'woocommerce' ); /* Breadcrumb Trail Support */ add_theme_support( 'breadcrumb-trail' ); /* Extend wp_title */ if( ! function_exists( 'livesay_theme_wp_title' ) ) { function livesay_theme_wp_title( $title, $sep ) { global $paged, $page; if ( is_feed() ) return $title; // Add the site name. $site_name = get_bloginfo( 'name' ); // Add the site description for the home/front page. $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_front_page() ) ) $title = "$site_name $sep $site_description"; // Add a page number if necessary. if ( $paged >= 2 || $page >= 2 ) $title = "$site_name $sep" . sprintf( esc_html__( ' Page %s', 'livesay' ), max( $paged, $page ) ); return $title; } add_filter( 'wp_title', 'livesay_theme_wp_title', 10, 2 ); } /* Languages */ if( ! function_exists( 'livesay_theme_language_setup' ) ) { function livesay_theme_language_setup(){ load_theme_textdomain( 'livesay', get_template_directory() . '/languages' ); } add_action('after_setup_theme', 'livesay_theme_language_setup'); } /* Slider Revolution Theme Mode */ if(function_exists( 'set_revslider_as_theme' )){ add_action( 'init', 'livesay_theme_revslider' ); function livesay_theme_revslider() { set_revslider_as_theme(); } } /* Visual Composer Theme Mode */ if(function_exists('vc_set_as_theme')) vc_set_as_theme();