![]() 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/claquemagazineawards.com/wp-content/themes/event-planners/ |
<?php /** * Event Planners functions and definitions * * @package Event Planners */ global $content_width; if ( ! isset( $content_width ) ) $content_width = 640; /* pixels */ /** * Set the content width based on the theme's design and stylesheet. */ if ( ! function_exists( 'event_planners_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 post thumbnails. */ function event_planners_setup() { load_theme_textdomain( 'event-planners', get_template_directory() . '/languages' ); add_theme_support( 'automatic-feed-links' ); add_theme_support('woocommerce'); add_theme_support( 'post-thumbnails' ); add_theme_support( 'title-tag' ); add_post_type_support( 'page', 'excerpt' ); add_theme_support( 'wc-product-gallery-zoom' ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); add_theme_support( 'custom-logo', array( 'height' => 60, 'width' => 125, 'flex-height' => true, ) ); register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'event-planners' ), ) ); add_theme_support( 'custom-background', array( 'default-color' => 'ffffff' ) ); add_editor_style( 'editor-style.css' ); } endif; // event_planners_setup add_action( 'after_setup_theme', 'event_planners_setup' ); function event_planners_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Blog Sidebar', 'event-planners' ), 'description' => esc_html__( 'Appears on blog page sidebar', 'event-planners' ), 'id' => 'sidebar-1', 'before_widget' => '', 'before_title' => '<h3 class="widget-title titleborder"><span>', 'after_title' => '</span></h3><aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Column 1', 'event-planners' ), 'description' => esc_html__( 'Appears on page footer', 'event-planners' ), 'id' => 'fc-1', 'before_widget' => '', 'before_title' => '<h5>', 'after_title' => '</h5><aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Column 2', 'event-planners' ), 'description' => esc_html__( 'Appears on page footer', 'event-planners' ), 'id' => 'fc-2', 'before_widget' => '', 'before_title' => '<h5>', 'after_title' => '</h5><aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Column 3', 'event-planners' ), 'description' => esc_html__( 'Appears on page footer', 'event-planners' ), 'id' => 'fc-3', 'before_widget' => '', 'before_title' => '<h5>', 'after_title' => '</h5><aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Column 4', 'event-planners' ), 'description' => esc_html__( 'Appears on page footer', 'event-planners' ), 'id' => 'fc-4', 'before_widget' => '', 'before_title' => '<h5>', 'after_title' => '</h5><aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', ) ); } add_action( 'widgets_init', 'event_planners_widgets_init' ); function event_planners_font_url(){ $font_url = ''; /* Translators: If there are any character that are not * supported by Roboto Condensed, trsnalate this to off, do not * translate into your own language. */ $robotocondensed = _x('on','Roboto Condensed:on or off','event-planners'); /* Translators: If there has any character that are not supported * by Scada, translate this to off, do not translate * into your own language. */ $scada = _x('on','Scada:on or off','event-planners'); $lato = _x('on','Lato:on or off','event-planners'); $roboto = _x('on','Roboto:on or off','event-planners'); $opensans = _x('on','Open Sans:on or off','event-planners'); $assistant = _x('on','Assistant:on or off','event-planners'); $lora = _x('on','Lora:on or off','event-planners'); $kaushanscript = _x('on','Kaushan Script:on or off','event-planners'); if('off' !== $robotocondensed ){ $font_family = array(); if('off' !== $robotocondensed){ $font_family[] = 'Roboto Condensed:300,400,600,700,800,900'; } if('off' !== $lato){ $font_family[] = 'Lato:100,100i,300,300i,400,400i,700,700i,900,900i'; } if('off' !== $roboto){ $font_family[] = 'Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i'; } if('off' !== $opensans){ $font_family[] = 'Open Sans:300,300i,400,400i,600,600i,700,700i,800,800i'; } if('off' !== $assistant){ $font_family[] = 'Assistant:200,300,400,600,700,800'; } if('off' !== $lora){ $font_family[] = 'Lora:400,400i,700,700i'; } if('off' !== $kaushanscript){ $font_family[] = 'Kaushan Script:400'; } $query_args = array( 'family' => urlencode(implode('|',$font_family)), ); $font_url = add_query_arg($query_args,'//fonts.googleapis.com/css'); } return $font_url; } function event_planners_scripts() { wp_enqueue_style('event-planners-font', event_planners_font_url(), array()); wp_enqueue_style( 'event-planners-basic-style', get_stylesheet_uri() ); wp_enqueue_style( 'event-planners-editor-style', get_template_directory_uri()."/editor-style.css" ); wp_enqueue_style( 'event-planners-animation-style', get_template_directory_uri()."/css/animation.css" ); wp_enqueue_style( 'nivo-slider', get_template_directory_uri()."/css/nivo-slider.css" ); wp_enqueue_style( 'event-planners-main-style', get_template_directory_uri()."/css/responsive.css" ); wp_enqueue_style( 'event-planners-base-style', get_template_directory_uri()."/css/style_base.css" ); wp_enqueue_script( 'jquery-nivo', get_template_directory_uri() . '/js/jquery.nivo.slider.js', array('jquery') ); wp_enqueue_script( 'event-planners-custom-js', get_template_directory_uri() . '/js/custom.js' ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'event_planners_scripts' ); define('EVENT_PLANNERS_SKTTHEMES_URL','https://www.sktthemes.org/'); define('EVENT_PLANNERS_SKTTHEMES_PRO_THEME_URL','https://www.sktthemes.org/shop/event-agency-wordpress-theme/'); define('EVENT_PLANNERS_SKTTHEMES_FREE_THEME_URL','https://www.sktthemes.org/shop/free-conference-wordpress-theme'); define('EVENT_PLANNERS_SKTTHEMES_THEME_DOC','https://sktthemesdemo.net/documentation/event-planner-documentation/'); define('EVENT_PLANNERS_SKTTHEMES_LIVE_DEMO','https://sktperfectdemo.com/demos/event-planners/'); define('EVENT_PLANNERS_SKTTHEMES_THEMES','https://www.sktthemes.org/themes/'); /** * Custom template for about theme. */ require get_template_directory() . '/inc/about-themes.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; // get slug by id function event_planners_get_slug_by_id($id) { $post_data = get_post($id, ARRAY_A); $slug = $post_data['post_name']; return $slug; } if ( ! function_exists( 'event_planners_the_custom_logo' ) ) : /** * Displays the optional custom logo. * * Does nothing if the custom logo is not available. * */ function event_planners_the_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } } endif; require_once get_template_directory() . '/customize-pro/example-1/class-customize.php'; /** * Add a pingback url auto-discovery header for singularly identifiable articles. */ function event_planners_pingback_header() { if ( is_singular() && pings_open() ) { printf( '<link rel="pingback" href="%s">' . "\n", esc_html(get_bloginfo( 'pingback_url' ) )); } } add_action( 'wp_head', 'event_planners_pingback_header' ); add_filter( 'body_class','event_planners_body_class' ); function event_planners_body_class( $classes ) { $hideslide = get_theme_mod('hide_slides', 1); if (!is_home() && is_front_page()) { if( $hideslide == '') { $classes[] = 'enableslide'; } } return $classes; } /** * Filter the except length to 20 words. * * @param int $length Excerpt length. * @return int (Maybe) modified excerpt length. */ function event_planners_custom_excerpt_length( $excerpt_length ) { return 19; } add_filter( 'excerpt_length', 'event_planners_custom_excerpt_length', 999 ); /** * * Style For About Theme Page * */ function event_planners_admin_about_page_css_enqueue($hook) { if ( 'appearance_page_event_planners_guide' != $hook ) { return; } wp_enqueue_style( 'event-planners-about-page-style', get_template_directory_uri() . '/css/event-planners-about-page-style.css' ); } add_action( 'admin_enqueue_scripts', 'event_planners_admin_about_page_css_enqueue' ); // WordPress wp_body_open backward compatibility if ( ! function_exists( 'wp_body_open' ) ) { function wp_body_open() { do_action( 'wp_body_open' ); } } /** * Include the Plugin_Activation class. */ require_once dirname( __FILE__ ) . '/class-tgm-plugin-activation.php'; add_action( 'tgmpa_register', 'event_planners_register_required_plugins' ); function event_planners_register_required_plugins() { $plugins = array( array( 'name' => 'SKT Templates', 'slug' => 'skt-templates', 'required' => false, ) ); $config = array( 'id' => 'tgmpa', // Unique ID for hashing notices for multiple instances of TGMPA. 'default_path' => '', // Default absolute path to bundled plugins. 'menu' => 'skt-install-plugins', // Menu slug. 'parent_slug' => 'themes.php', // Parent menu slug. 'capability' => 'edit_theme_options', // Capability needed to view plugin install page, should be a capability associated with the parent menu used. 'has_notices' => true, // Show admin notices or not. 'dismissable' => true, // If false, a user cannot dismiss the nag message. 'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag. 'is_automatic' => false, // Automatically activate plugins after installation or not. 'message' => '', // Message to output right before the plugins table. ); tgmpa( $plugins, $config ); }