![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/askdragao.com/wp-content/themes/fclub/ |
<?php /** * fclub functions and definitions * * Set up the theme and provides some helper functions, which are used in the * theme as custom template tags. Others are attached to action and filter * hooks in WordPress to change core functionality. * * When using a child theme you can override certain functions (those wrapped * in a function_exists() call) by defining them first in your child theme's * functions.php file. The child theme's functions.php file is included before * the parent theme's file, so the child theme functions would be used. * * @link https://codex.wordpress.org/Theme_Development * @link https://codex.wordpress.org/Child_Themes * * Functions that are not pluggable (not wrapped in function_exists()) are * instead attached to a filter or action hook. * * For more information on hooks, actions, and filters, * {@link https://codex.wordpress.org/Plugin_API} */ /** * Set a constant that holds the theme's minimum supported PHP version. */ define( 'FCLUB_MIN_PHP_VERSION', '5.6' ); /** * Immediately after theme switch is fired we we want to check php version and * revert to previously active theme if version is below our minimum. */ add_action( 'after_switch_theme', 'fclub_test_for_min_php' ); /** * Switches back to the previous theme if the minimum PHP version is not met. */ function fclub_test_for_min_php() { // Compare versions. if ( version_compare( PHP_VERSION, FCLUB_MIN_PHP_VERSION, '<' ) ) { // Site doesn't meet themes min php requirements, add notice... add_action( 'admin_notices', 'fclub_min_php_not_met_notice' ); // ... and switch back to previous theme. switch_theme( get_option( 'theme_switched' ) ); return false; }; } if ( ! function_exists( 'wp_body_open' ) ) { function wp_body_open() { do_action( 'wp_body_open' ); } } /** * An error notice that can be displayed if the Minimum PHP version is not met. */ function fclub_min_php_not_met_notice() { ?> <div class="notice notice-error is_dismissable"> <p> <?php esc_html_e( 'You need to update your PHP version to run this theme.', 'fclub' ); ?> <br /> <?php printf( /* translators: 1 is the current PHP version string, 2 is the minmum supported php version string of the theme */ esc_html__( 'Actual version is: %1$s, required version is: %2$s.', 'fclub' ), PHP_VERSION, FCLUB_MIN_PHP_VERSION ); // phpcs: XSS ok. ?> </p> </div> <?php } if ( ! function_exists( 'fclub_setup' ) ) : /** * fclub setup. * * Set 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 post thumbnails. * */ function fclub_setup() { /* * Make theme available for translation. * * Translations can be filed in the /languages/ directory * * If you're building a theme based on fclub, use a find and replace * to change 'fclub' to the name of your theme in all the template files. */ load_theme_textdomain( 'fclub', 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' ); /* * 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' ); /* * 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', ) ); // Add support for Block Styles. add_theme_support( 'wp-block-styles' ); add_theme_support( 'editor-styles' ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, and column width. */ add_editor_style( array( 'css/editor-style.css', get_template_directory_uri() . '/css/font-awesome.css' ) ); /* * Set Custom Background */ add_theme_support( 'custom-background', array ('default-color' => '#ffffff') ); // Set the default content width. $GLOBALS['content_width'] = 900; // This theme uses wp_nav_menu() in header menu register_nav_menus( array( 'primary' => __( 'Primary Menu', 'fclub' ), ) ); $defaults = array( 'flex-height' => false, 'flex-width' => false, 'header-text' => array( 'site-title', 'site-description' ), ); add_theme_support( 'custom-logo', $defaults ); // Define and register starter content to showcase the theme on new sites. $starter_content = array( 'widgets' => array( 'sidebar-widget-area' => array( 'search', 'recent-posts', 'categories', 'archives', ), 'footer-column-1-widget-area' => array( 'recent-comments' ), 'footer-column-2-widget-area' => array( 'recent-posts' ), 'footer-column-3-widget-area' => array( 'calendar' ), ), 'posts' => array( 'home', 'blog', 'about', 'contact' ), // Default to a static front page and assign the front and posts pages. 'options' => array( 'show_on_front' => 'page', 'page_on_front' => '{{home}}', 'page_for_posts' => '{{blog}}', ), // Set the front page section theme mods to the IDs of the core-registered pages. 'theme_mods' => array( 'fclub_slider_display' => 1, 'fclub_slide1_image' => esc_url( get_template_directory_uri() . '/images/slider/1.jpg' ), 'fclub_slide1_content' => _x( '<h2>Slide 1 Title</h2><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p><a href="#" class="btn" title="Read more">Read more</a>', 'Theme starter content', 'fclub' ), 'fclub_slide2_image' => esc_url( get_template_directory_uri() . '/images/slider/2.jpg' ), 'fclub_slide2_content' => _x( '<h2>Slide 2 Title</h2><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p><a href="#" class="btn" title="Read more">Read more</a>', 'Theme starter content', 'fclub' ), 'fclub_slide3_image' => esc_url( get_template_directory_uri() . '/images/slider/3.jpg' ), 'fclub_slide3_content' => _x( '<h2>Slide 3 Title</h2><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p><a href="#" class="btn" title="Read more">Read more</a>', 'Theme starter content', 'fclub' ), 'fclub_social_facebook' => _x( '#', 'Theme starter content', 'fclub' ), 'fclub_social_twitter' => _x( '#', 'Theme starter content', 'fclub' ), 'fclub_social_linkedin' => _x( '#', 'Theme starter content', 'fclub' ), 'fclub_social_instagram' => _x( '#', 'Theme starter content', 'fclub' ), 'fclub_social_rss' => _x( '#', 'Theme starter content', 'fclub' ), 'fclub_social_tumblr' => _x( '#', 'Theme starter content', 'fclub' ), 'fclub_social_youtube' => _x( '#', 'Theme starter content', 'fclub' ), 'fclub_social_pinterest' => _x( '#', 'Theme starter content', 'fclub' ), 'fclub_social_vk' => _x( '#', 'Theme starter content', 'fclub' ), 'fclub_social_flickr' => _x( '#', 'Theme starter content', 'fclub' ), 'fclub_social_vine' => _x( '#', 'Theme starter content', 'fclub' ), ), 'nav_menus' => array( // Assign a menu to the "primary" location. 'primary' => array( 'name' => __( 'Primary Menu', 'fclub' ), 'items' => array( 'link_home', 'page_blog', 'page_contact', 'page_about', ), ), ), ); $starter_content = apply_filters( 'fclub_starter_content', $starter_content ); add_theme_support( 'starter-content', $starter_content ); } endif; // fclub_setup add_action( 'after_setup_theme', 'fclub_setup' ); if ( ! function_exists( 'fclub_load_scripts' ) ) : /** * the main function to load scripts in the fclub theme * if you add a new load of script, style, etc. you can use that function * instead of adding a new wp_enqueue_scripts action for it. */ function fclub_load_scripts() { // load main stylesheet. wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/font-awesome.css', array( ) ); wp_enqueue_style( 'fclub-style', get_stylesheet_uri(), array() ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } wp_enqueue_script( 'materialize', get_template_directory_uri() . '/js/materialize.js', array( 'jquery' ) ); // Load Utilities JS Script wp_enqueue_script( 'fclub-utilities', get_template_directory_uri() . '/js/utilities.js', array( 'jquery', 'materialize', ) ); } endif; // fclub_load_scripts add_action( 'wp_enqueue_scripts', 'fclub_load_scripts' ); if ( ! function_exists( 'fclub_widgets_init' ) ) : /** * widgets-init action handler. Used to register widgets and register widget areas */ function fclub_widgets_init() { // Register Sidebar Widget. register_sidebar( array ( 'name' => __( 'Sidebar Widget Area', 'fclub'), 'id' => 'sidebar-widget-area', 'description' => __( 'The sidebar widget area', 'fclub'), 'before_widget' => '', 'after_widget' => '', 'before_title' => '<div class="sidebar-before-title"></div><h3 class="sidebar-title">', 'after_title' => '</h3><div class="sidebar-after-title"></div>', ) ); // Register Footer Column #1 register_sidebar( array ( 'name' => __( 'Footer Column #1', 'fclub' ), 'id' => 'footer-column-1-widget-area', 'description' => __( 'The Footer Column #1 widget area', 'fclub' ), 'before_widget' => '', 'after_widget' => '', 'before_title' => '<h2 class="footer-title">', 'after_title' => '</h2><div class="footer-after-title"></div>', ) ); // Register Footer Column #2 register_sidebar( array ( 'name' => __( 'Footer Column #2', 'fclub' ), 'id' => 'footer-column-2-widget-area', 'description' => __( 'The Footer Column #2 widget area', 'fclub' ), 'before_widget' => '', 'after_widget' => '', 'before_title' => '<h2 class="footer-title">', 'after_title' => '</h2><div class="footer-after-title"></div>', ) ); // Register Footer Column #3 register_sidebar( array ( 'name' => __( 'Footer Column #3', 'fclub' ), 'id' => 'footer-column-3-widget-area', 'description' => __( 'The Footer Column #3 widget area', 'fclub' ), 'before_widget' => '', 'after_widget' => '', 'before_title' => '<h2 class="footer-title">', 'after_title' => '</h2><div class="footer-after-title"></div>', ) ); } endif; // fclub_widgets_init add_action( 'widgets_init', 'fclub_widgets_init' ); if ( ! function_exists( 'fclub_show_copyright_text' ) ) : /** * Displays the copyright text. */ function fclub_show_copyright_text() { $footerText = get_theme_mod('fclub_footer_copyright', null); if ( !empty( $footerText ) ) { echo esc_html( $footerText ) . ' | '; } } endif; // fclub_show_copyright_text if ( ! function_exists( 'fclub_custom_header_setup' ) ) : /** * Set up the WordPress core custom header feature. * * @uses fclub_header_style() */ function fclub_custom_header_setup() { add_theme_support( 'custom-header', array ( 'default-image' => '', 'flex-height' => true, 'flex-width' => true, 'uploads' => true, 'width' => 900, 'height' => 100, 'default-text-color' => '#434343', 'wp-head-callback' => 'fclub_header_style', ) ); } endif; // fclub_custom_header_setup add_action( 'after_setup_theme', 'fclub_custom_header_setup' ); if ( ! function_exists( 'fclub_header_style' ) ) : /** * Styles the header image and text displayed on the blog. * * @see fclub_custom_header_setup(). */ function fclub_header_style() { $header_text_color = get_header_textcolor(); if ( ! has_header_image() && ( get_theme_support( 'custom-header', 'default-text-color' ) === $header_text_color || 'blank' === $header_text_color ) ) { return; } $headerImage = get_header_image(); ?> <style id="fclub-custom-header-styles" type="text/css"> <?php if ( has_header_image() ) : ?> #header-main-fixed {background-image: url("<?php echo esc_url( $headerImage ); ?>");} <?php endif; ?> <?php if ( get_theme_support( 'custom-header', 'default-text-color' ) !== $header_text_color && 'blank' !== $header_text_color ) : ?> #header-main-fixed, #header-main-fixed h1.entry-title {color: #<?php echo sanitize_hex_color_no_hash( $header_text_color ); ?>;} <?php endif; ?> </style> <?php } endif; // End of fclub_header_style. if ( class_exists('WP_Customize_Section') ) { class fclub_Customize_Section_Pro extends WP_Customize_Section { // The type of customize section being rendered. public $type = 'fclub'; // Custom button text to output. public $pro_text = ''; // Custom pro button URL. public $pro_url = ''; // Add custom parameters to pass to the JS via JSON. public function json() { $json = parent::json(); $json['pro_text'] = $this->pro_text; $json['pro_url'] = esc_url( $this->pro_url ); return $json; } // Outputs the template protected function render_template() { ?> <li id="accordion-section-{{ data.id }}" class="accordion-section control-section control-section-{{ data.type }} cannot-expand"> <h3 class="accordion-section-title"> {{ data.title }} <# if ( data.pro_text && data.pro_url ) { #> <a href="{{ data.pro_url }}" class="button button-primary alignright" target="_blank">{{ data.pro_text }}</a> <# } #> </h3> </li> <?php } } } /** * Singleton class for handling the theme's customizer integration. */ final class fclub_Customize { // Returns the instance. public static function get_instance() { static $instance = null; if ( is_null( $instance ) ) { $instance = new self; $instance->setup_actions(); } return $instance; } // Constructor method. private function __construct() {} // Sets up initial actions. private function setup_actions() { // Register panels, sections, settings, controls, and partials. add_action( 'customize_register', array( $this, 'sections' ) ); // Register scripts and styles for the controls. add_action( 'customize_controls_enqueue_scripts', array( $this, 'enqueue_control_scripts' ), 0 ); } // Sets up the customizer sections. public function sections( $manager ) { // Load custom sections. // Register custom section types. $manager->register_section_type( 'fclub_Customize_Section_Pro' ); // Register sections. $manager->add_section( new fclub_Customize_Section_Pro( $manager, 'fclub', array( 'title' => esc_html__( 'tClub', 'fclub' ), 'pro_text' => esc_html__( 'Upgrade to Pro', 'fclub' ), 'pro_url' => esc_url( 'https://tishonator.com/product/tclub' ) ) ) ); } // Loads theme customizer CSS. public function enqueue_control_scripts() { wp_enqueue_script( 'fclub-customize-controls', trailingslashit( get_template_directory_uri() ) . 'js/customize-controls.js', array( 'customize-controls' ) ); wp_enqueue_style( 'fclub-customize-controls', trailingslashit( get_template_directory_uri() ) . 'css/customize-controls.css' ); } } // Doing this customizer thang! fclub_Customize::get_instance(); if ( ! function_exists( 'fclub_customize_register' ) ) : /** * Add postMessage support for site title and description for the Theme Customizer. * * @param WP_Customize_Manager $wp_customize Theme Customizer object. */ function fclub_customize_register( $wp_customize ) { /** * Add Slider Section */ $wp_customize->add_section( 'fclub_slider_section', array( 'title' => __( 'Slider', 'fclub' ), 'capability' => 'edit_theme_options', ) ); // Add display slider option $wp_customize->add_setting( 'fclub_slider_display', array( 'default' => 0, 'sanitize_callback' => 'fclub_sanitize_checkbox', ) ); $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'fclub_slider_display', array( 'label' => __( 'Display Slider on a Static Front Page', 'fclub' ), 'section' => 'fclub_slider_section', 'settings' => 'fclub_slider_display', 'type' => 'checkbox', ) ) ); for ($i = 1; $i <= 3; ++$i) { $slideContentId = 'fclub_slide'.$i.'_content'; $slideImageId = 'fclub_slide'.$i.'_image'; $defaultSliderImagePath = get_template_directory_uri().'/images/slider/'.$i.'.jpg'; // Add Slide Content $wp_customize->add_setting( $slideContentId, array( 'sanitize_callback' => 'fclub_sanitize_html', ) ); $wp_customize->add_control( new WP_Customize_Control( $wp_customize, $slideContentId, array( 'label' => sprintf( esc_html__( 'Slide #%s Content', 'fclub' ), $i ), 'section' => 'fclub_slider_section', 'settings' => $slideContentId, 'type' => 'textarea', ) ) ); // Add Slide Background Image $wp_customize->add_setting( $slideImageId, array( 'default' => $defaultSliderImagePath, 'sanitize_callback' => 'fclub_sanitize_url' ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, $slideImageId, array( 'label' => sprintf( esc_html__( 'Slide #%s Image', 'fclub' ), $i ), 'section' => 'fclub_slider_section', 'settings' => $slideImageId, ) ) ); } /** * Add Footer Section */ $wp_customize->add_section( 'fclub_footer_section', array( 'title' => __( 'Footer', 'fclub' ), 'capability' => 'edit_theme_options', ) ); // Add Footer Copyright Text $wp_customize->add_setting( 'fclub_footer_copyright', array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'fclub_footer_copyright', array( 'label' => __( 'Copyright Text', 'fclub' ), 'section' => 'fclub_footer_section', 'settings' => 'fclub_footer_copyright', 'type' => 'text', ) ) ); } endif; // fclub_customize_register add_action( 'customize_register', 'fclub_customize_register' ); /** * Displays the slider */ if ( ! function_exists( 'fclub_display_slider' ) ) : function fclub_display_slider() { ?> <div class="slider"> <ul class="slides"> <?php // display slides for ( $i = 1; $i <= 3; ++$i ) { $defaultSlideImage = get_template_directory_uri().'/images/slider/' . $i .'.jpg'; $slideContent = get_theme_mod( 'fclub_slide'.$i.'_content' ); $slideImage = get_theme_mod( 'fclub_slide'.$i.'_image', $defaultSlideImage ); ?> <li> <img src="<?php echo esc_attr( $slideImage ); ?>"> <div class="caption left-align"> <?php echo $slideContent; ?> </div> </li> <?php } ?> </ul> </div> <?php } endif; // fclub_display_slider if ( ! function_exists( 'fclub_sanitize_checkbox' ) ) : function fclub_sanitize_checkbox( $checked ) { // Boolean check. return ( ( isset( $checked ) && true == $checked ) ? true : false ); } endif; // fclub_sanitize_checkbox if ( ! function_exists( 'fclub_sanitize_html' ) ) : function fclub_sanitize_html( $html ) { return wp_kses_post( $html ); } endif; // fclub_sanitize_html if ( ! function_exists( 'fclub_sanitize_url' ) ) : function fclub_sanitize_url( $url ) { return esc_url_raw( $url ); } endif; // fclub_sanitize_url /** * Fix skip link focus in IE11. * * This does not enqueue the script because it is tiny and because it is only for IE11, * thus it does not warrant having an entire dedicated blocking script being loaded. * * @link https://git.io/vWdr2 */ function fclub_skip_link_focus_fix() { // The following is minified via `terser --compress --mangle -- js/skip-link-focus-fix.js`. ?> <script> /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1); </script> <?php } add_action( 'wp_print_footer_scripts', 'fclub_skip_link_focus_fix' ); function fclub_register_block_styles() { register_block_style( 'core/button', array( 'name' => 'btn', 'label' => __( 'Hover Effect', 'fclub' ), ) ); register_block_style( 'core/group', array( 'name' => 'tgroup', 'label' => __( 'Margin Bottom Space', 'fclub' ), ) ); register_block_style( 'core/site-title', array( 'name' => 'tsitetitle', 'label' => __( 'Bold', 'fclub' ), ) ); register_block_style( 'core/post-title', array( 'name' => 'tposttitle', 'label' => __( 'Bold', 'fclub' ), ) ); register_block_style( 'core/social-link', array( 'name' => 'tsociallinks', 'label' => __( 'Square', 'fclub' ), ) ); } add_action( 'init', 'fclub_register_block_styles' );