Warning: Constant WP_FILE_MANAGER_PATH already defined in /home/nzzahcom/public_html/wp-content/plugins/wp-file-manager/file_folder_manager.php on line 17
/** * superio 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} * * @package WordPress * @subpackage Superio * @since Superio 1.3.25 */ define( 'SUPERIO_THEME_VERSION', '1.3.25' ); define( 'SUPERIO_DEMO_MODE', false ); if ( ! isset( $content_width ) ) { $content_width = 660; } if ( ! function_exists( 'superio_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. * * @since Superio 1.0 */ function superio_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on superio, use a find and replace * to change 'superio' to the name of your theme in all the template files */ load_theme_textdomain( 'superio', 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 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. * * See: https://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 1200, 750, true ); // This theme uses wp_nav_menu() in two locations. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'superio' ), 'mobile-primary' => esc_html__( 'Mobile Primary Menu', 'superio' ), 'employer-menu' => esc_html__( 'Employer Menu', 'superio' ), 'candidate-menu' => esc_html__( 'Candidate Menu', 'superio' ), 'employee-menu' => esc_html__( 'Employee Menu', 'superio' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption' ) ); add_theme_support( "woocommerce", array('gallery_thumbnail_image_width' => 410) ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); /* * Enable support for Post Formats. * * See: https://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link', 'gallery', 'status', 'audio', 'chat' ) ); $color_scheme = superio_get_color_scheme(); $default_color = trim( $color_scheme[0], '#' ); // Setup the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'superio_custom_background_args', array( 'default-color' => $default_color, 'default-attachment' => 'fixed', ) ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); // Add support for Block Styles. add_theme_support( 'wp-block-styles' ); // Add support for full and wide align images. add_theme_support( 'align-wide' ); // Add support for editor styles. add_theme_support( 'editor-styles' ); // Add support for responsive embeds. add_theme_support( 'responsive-embeds' ); // Enqueue editor styles. add_editor_style( array( 'css/style-editor.css' ) ); } endif; // superio_setup add_action( 'after_setup_theme', 'superio_setup' ); /** * Load Google Front */ function superio_get_fonts_url() { $fonts_url = ''; /* Translators: If there are characters in your language that are not * supported by Montserrat, translate this to 'off'. Do not translate * into your own language. */ $jost = _x( 'on', 'Jost font: on or off', 'superio' ); if ( 'off' !== $jost ) { $font_families = array(); if ( 'off' !== $jost ) { $font_families[] = 'Jost:400,500,600,700,800'; } $query_args = array( 'family' => ( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $protocol = is_ssl() ? 'https:' : 'http:'; $fonts_url = add_query_arg( $query_args, $protocol .'//fonts.googleapis.com/css' ); } return esc_url( $fonts_url ); } function superio_admin_enqueue_styles() { // load font wp_enqueue_style( 'superio-theme-fonts', superio_get_fonts_url(), array(), null ); //load font awesome wp_enqueue_style( 'all-awesome', get_template_directory_uri() . '/css/all-awesome.css', array(), '5.11.2' ); //load font flaticon wp_enqueue_style( 'flaticon', get_template_directory_uri() . '/css/flaticon.css', array(), '1.0.0' ); // load font themify icon wp_enqueue_style( 'themify-icons', get_template_directory_uri() . '/css/themify-icons.css', array(), '1.0.0' ); } add_action( 'admin_enqueue_scripts', 'superio_admin_enqueue_styles' ); /** * Enqueue styles. * * @since Superio 1.0 */ function superio_enqueue_styles() { // load font wp_enqueue_style( 'superio-theme-fonts', superio_get_fonts_url(), array(), null ); //load font awesome wp_enqueue_style( 'all-awesome', get_template_directory_uri() . '/css/all-awesome.css', array(), '5.11.2' ); //load font flaticon wp_enqueue_style( 'superio-flaticon', get_template_directory_uri() . '/css/flaticon.css', array(), '1.0.0' ); // load font themify icon wp_enqueue_style( 'themify-icons', get_template_directory_uri() . '/css/themify-icons.css', array(), '1.0.0' ); // load animate version 3.6.0 wp_enqueue_style( 'animate', get_template_directory_uri() . '/css/animate.css', array(), '3.6.0' ); // load bootstrap style if( is_rtl() ){ wp_enqueue_style( 'bootstrap-rtl', get_template_directory_uri() . '/css/bootstrap-rtl.css', array(), '3.2.0' ); } else { wp_enqueue_style( 'bootstrap', get_template_directory_uri() . '/css/bootstrap.css', array(), '3.2.0' ); } // slick wp_enqueue_style( 'slick', get_template_directory_uri() . '/css/slick.css', array(), '1.8.0' ); // magnific-popup wp_enqueue_style( 'magnific-popup', get_template_directory_uri() . '/css/magnific-popup.css', array(), '1.1.0' ); // perfect scrollbar wp_enqueue_style( 'perfect-scrollbar', get_template_directory_uri() . '/css/perfect-scrollbar.css', array(), '0.6.12' ); // mobile menu wp_enqueue_style( 'sliding-menu', get_template_directory_uri() . '/css/sliding-menu.min.css', array(), '0.3.0' ); // main style wp_enqueue_style( 'superio-template', get_template_directory_uri() . '/css/template.css', array(), '1.0' ); if( is_rtl() ){ wp_enqueue_style( 'update-rtl', get_template_directory_uri() . '/css/update-rtl.css', array(), '1.0.0' ); } else { wp_enqueue_style( 'update', get_template_directory_uri() . '/css/update.css', array(), '1.0.0' ); } $custom_style = superio_custom_styles(); if ( !empty($custom_style) ) { wp_add_inline_style( 'superio-template', $custom_style ); } wp_enqueue_style( 'superio-style', get_template_directory_uri() . '/style.css', array(), '1.0' ); } add_action( 'wp_enqueue_scripts', 'superio_enqueue_styles', 100 ); function superio_login_enqueue_styles() { wp_enqueue_style( 'all-awesome', get_template_directory_uri() . '/css/all-awesome.css', array(), '5.11.2' ); wp_enqueue_style( 'superio-login-style', get_template_directory_uri() . '/css/login-style.css', array(), '1.0' ); } add_action( 'login_enqueue_scripts', 'superio_login_enqueue_styles', 10 ); /** * Enqueue scripts. * * @since Superio 1.0 */ function superio_enqueue_scripts() { if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } // bootstrap wp_enqueue_script( 'bootstrap', get_template_directory_uri() . '/js/bootstrap.min.js', array( 'jquery' ), '20150330', true ); // slick wp_enqueue_script( 'slick', get_template_directory_uri() . '/js/slick.min.js', array( 'jquery' ), '1.8.0', true ); // countdown wp_register_script( 'countdown', get_template_directory_uri() . '/js/countdown.js', array( 'jquery' ), '20150315', true ); wp_localize_script( 'countdown', 'superio_countdown_opts', array( 'days' => esc_html__('Days', 'superio'), 'hours' => esc_html__('Hrs', 'superio'), 'mins' => esc_html__('Mins', 'superio'), 'secs' => esc_html__('Secs', 'superio'), )); // popup wp_enqueue_script( 'jquery-magnific-popup', get_template_directory_uri() . '/js/jquery.magnific-popup.min.js', array( 'jquery' ), '1.1.0', true ); // unviel wp_enqueue_script( 'jquery-unveil', get_template_directory_uri() . '/js/jquery.unveil.js', array( 'jquery' ), '1.1.0', true ); // perfect scrollbar wp_enqueue_script( 'perfect-scrollbar', get_template_directory_uri() . '/js/perfect-scrollbar.jquery.min.js', array( 'jquery' ), '0.6.12', true ); if ( superio_get_config('keep_header') ) { wp_enqueue_script( 'jquery-waypoint', get_template_directory_uri() . '/js/jquery.waypoints.min.js', array( 'jquery' ), '4.0.1', true ); wp_enqueue_script( 'jquery-sticky', get_template_directory_uri() . '/js/sticky.min.js', array( 'jquery', 'jquery-waypoint' ), '4.0.1', true ); } // mobile menu script wp_enqueue_script( 'sliding-menu', get_template_directory_uri() . '/js/sliding-menu.js', array( 'jquery' ), '0.3.0', true ); // main script wp_register_script( 'superio-functions', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20150330', true ); wp_localize_script( 'superio-functions', 'superio_ajax', array( 'ajaxurl' => admin_url( 'admin-ajax.php' ), 'previous' => esc_html__('Previous', 'superio'), 'next' => esc_html__('Next', 'superio'), 'menu_back_text' => esc_html__('Back', 'superio') )); wp_enqueue_script( 'superio-functions' ); wp_add_inline_script( 'superio-functions', "(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);" ); } add_action( 'wp_enqueue_scripts', 'superio_enqueue_scripts', 1 ); /** * Add a `screen-reader-text` class to the search form's submit button. * * @since Superio 1.0 * * @param string $html Search form HTML. * @return string Modified search form HTML. */ function superio_search_form_modify( $html ) { return str_replace( 'class="search-submit"', 'class="search-submit screen-reader-text"', $html ); } add_filter( 'get_search_form', 'superio_search_form_modify' ); /** * Function get opt_name * */ function superio_get_opt_name() { return 'superio_theme_options'; } add_filter( 'apus_framework_get_opt_name', 'superio_get_opt_name' ); function superio_register_demo_mode() { if ( defined('SUPERIO_DEMO_MODE') && SUPERIO_DEMO_MODE ) { return true; } return false; } add_filter( 'apus_framework_register_demo_mode', 'superio_register_demo_mode' ); function superio_get_demo_preset() { $preset = ''; if ( defined('SUPERIO_DEMO_MODE') && SUPERIO_DEMO_MODE ) { if ( isset($_REQUEST['_preset']) && $_REQUEST['_preset'] ) { $presets = get_option( 'apus_framework_presets' ); if ( is_array($presets) && isset($presets[$_REQUEST['_preset']]) ) { $preset = $_REQUEST['_preset']; } } else { $preset = get_option( 'apus_framework_preset_default' ); } } return $preset; } function superio_get_config($name, $default = '') { global $superio_options; if ( isset($superio_options[$name]) ) { return $superio_options[$name]; } return $default; } function superio_set_exporter_settings_option_keys($option_keys) { return array( 'elementor_disable_color_schemes', 'elementor_disable_typography_schemes', 'elementor_allow_tracking', 'elementor_cpt_support', 'wp_job_board_pro_settings', 'wp_job_board_pro__job__fields_data', 'wp_job_board_pro__employer__fields_data', 'wp_job_board_pro__candidate__fields_data', ); } add_filter( 'apus_exporter_ocdi_settings_option_keys', 'superio_set_exporter_settings_option_keys' ); function superio_disable_one_click_import() { return false; } add_filter('apus_frammework_enable_one_click_import', 'superio_disable_one_click_import'); function superio_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar Default', 'superio' ), 'id' => 'sidebar-default', 'description' => esc_html__( 'Add widgets here to appear in your Sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Jobs filter sidebar', 'superio' ), 'id' => 'jobs-filter-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Jobs filter 2 sidebar', 'superio' ), 'id' => 'jobs-filter2-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Jobs filter 3 sidebar', 'superio' ), 'id' => 'jobs-filter3-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="p-0 bg-transparent widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Jobs filter top sidebar', 'superio' ), 'id' => 'jobs-filter-top-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Jobs filter top 2 sidebar', 'superio' ), 'id' => 'jobs-filter-top2-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Jobs filter top 3 sidebar', 'superio' ), 'id' => 'jobs-filter-top3-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Jobs filter top 4 sidebar', 'superio' ), 'id' => 'jobs-filter-top4-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Jobs filter top maps sidebar', 'superio' ), 'id' => 'jobs-filter-top-maps-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Jobs filter Half Job Detail sidebar', 'superio' ), 'id' => 'jobs-filter-topbar-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Job single sidebar', 'superio' ), 'id' => 'job-single-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Job single 2 sidebar', 'superio' ), 'id' => 'job-single2-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Job single 3 sidebar', 'superio' ), 'id' => 'job-single3-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Job single 4 sidebar', 'superio' ), 'id' => 'job-single4-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="single-4 widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Employers filter sidebar', 'superio' ), 'id' => 'employers-filter-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Employers filter top sidebar', 'superio' ), 'id' => 'employers-filter-top-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Employers filter top maps sidebar', 'superio' ), 'id' => 'employers-filter-top-maps-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Employer single sidebar', 'superio' ), 'id' => 'employer-single-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Employer single sidebar 2', 'superio' ), 'id' => 'employer-single-sidebar2', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Candidates filter sidebar', 'superio' ), 'id' => 'candidates-filter-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Candidates filter 2 sidebar', 'superio' ), 'id' => 'candidates-filter2-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="p-0 bg-transparent widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Candidates filter top sidebar', 'superio' ), 'id' => 'candidates-filter-top-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Candidates filter top 2 sidebar', 'superio' ), 'id' => 'candidates-filter-top2-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Candidates filter top 3 sidebar', 'superio' ), 'id' => 'candidates-filter-top3-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Candidate single sidebar', 'superio' ), 'id' => 'candidate-single-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Candidate single 2 sidebar', 'superio' ), 'id' => 'candidate-single2-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Candidate single 3 sidebar', 'superio' ), 'id' => 'candidate-single3-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'User Profile sidebar', 'superio' ), 'id' => 'user-profile-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Blog sidebar', 'superio' ), 'id' => 'blog-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'superio' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Header Mobile Bottom', 'superio' ), 'id' => 'header-mobile-bottom', 'description' => esc_html__( 'Add widgets here to appear in your header mobile.', 'superio' ), 'before_widget' => '<aside class="%2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="title"><span>', 'after_title' => '</span></h2>', )); } add_action( 'widgets_init', 'superio_widgets_init' ); function superio_get_load_plugins() { $plugins[] = array( 'name' => esc_html__( 'Apus Framework For Themes', 'superio' ), 'slug' => 'apus-framework', 'required' => true , 'source' => get_template_directory() . '/inc/plugins/apus-framework.zip' ); $plugins[] = array( 'name' => esc_html__( 'Elementor Page Builder', 'superio' ), 'slug' => 'elementor', 'required' => true, ); $plugins[] = array( 'name' => esc_html__( 'Revolution Slider', 'superio' ), 'slug' => 'revslider', 'required' => true , 'source' => get_template_directory() . '/inc/plugins/revslider.zip' ); $plugins[] = array( 'name' => esc_html__( 'Cmb2', 'superio' ), 'slug' => 'cmb2', 'required' => true, ); $plugins[] = array( 'name' => esc_html__( 'MailChimp for WordPress', 'superio' ), 'slug' => 'mailchimp-for-wp', 'required' => true ); $plugins[] = array( 'name' => esc_html__( 'Contact Form 7', 'superio' ), 'slug' => 'contact-form-7', 'required' => true, ); // woocommerce plugins $plugins[] = array( 'name' => esc_html__( 'Woocommerce', 'superio' ), 'slug' => 'woocommerce', 'required' => true, ); // Job plugins $plugins[] = array( 'name' => esc_html__( 'WP Job Board Pro', 'superio' ), 'slug' => 'wp-job-board-pro', 'required' => true , 'source' => get_template_directory() . '/inc/plugins/wp-job-board-pro.zip' ); $plugins[] = array( 'name' => esc_html__( 'WP Job Board Pro - WooCommerce Paid Listings', 'superio' ), 'slug' => 'wp-job-board-pro-wc-paid-listings', 'required' => true , 'source' => get_template_directory() . '/inc/plugins/wp-job-board-pro-wc-paid-listings.zip' ); $plugins[] = array( 'name' => esc_html__( 'WP Private Message', 'superio' ), 'slug' => 'wp-private-message', 'required' => true , 'source' => get_template_directory() . '/inc/plugins/wp-private-message.zip' ); $plugins[] = array( 'name' => esc_html__( 'One Click Demo Import', 'superio' ), 'slug' => 'one-click-demo-import', 'required' => false, 'force_activation' => false, 'force_deactivation' => false, ); $plugins[] = array( 'name' => esc_html__( 'Easy SVG Support', 'superio' ), 'slug' => 'easy-svg', 'required' => false, 'force_activation' => false, 'force_deactivation' => false, ); $config = array( 'id' => 'superio', 'default_path' => '', 'menu' => 'tgmpa-install-plugins', 'has_notices' => true, 'dismissable' => true, 'dismiss_msg' => '', 'is_automatic' => false, 'message' => '', 'strings' => array( 'bulk_install' => esc_html__( 'Install Selected Plugins', 'superio' ), ), ); tgmpa( $plugins, $config ); } add_action( 'tgmpa_register', 'superio_get_load_plugins' ); get_template_part( '/inc/plugins/class-tgm-plugin-activation' ); get_template_part( '/inc/functions-helper' ); get_template_part( '/inc/functions-frontend' ); /** * Implement the Custom Header feature. * */ get_template_part( '/inc/custom-header' ); get_template_part( '/inc/classes/megamenu' ); get_template_part( '/inc/classes/mobilemenu' ); /** * Custom template tags for this theme. * */ require get_template_directory() . '/inc/template-tags.php'; if ( defined( 'APUS_FRAMEWORK_REDUX_ACTIVED' ) ) { get_template_part( '/inc/vendors/redux-framework/redux-config' ); define( 'SUPERIO_REDUX_FRAMEWORK_ACTIVED', true ); } if( superio_is_cmb2_activated() ) { get_template_part( '/inc/vendors/cmb2/page' ); define( 'SUPERIO_CMB2_ACTIVED', true ); } if( superio_is_woocommerce_activated() ) { get_template_part( '/inc/vendors/woocommerce/functions' ); get_template_part( '/inc/vendors/woocommerce/functions-redux-configs' ); define( 'SUPERIO_WOOCOMMERCE_ACTIVED', true ); } if( superio_is_wp_job_board_pro_activated() ) { get_template_part( '/inc/vendors/wp-job-board-pro/functions-redux-configs' ); get_template_part( '/inc/vendors/wp-job-board-pro/functions' ); get_template_part( '/inc/vendors/wp-job-board-pro/functions-employer' ); get_template_part( '/inc/vendors/wp-job-board-pro/functions-candidate' ); get_template_part( '/inc/vendors/wp-job-board-pro/functions-job-display' ); get_template_part( '/inc/vendors/wp-job-board-pro/functions-employer-display' ); get_template_part( '/inc/vendors/wp-job-board-pro/functions-candidate-display' ); } if ( superio_is_wp_job_board_pro_wc_paid_listings_activated() ) { get_template_part( '/inc/vendors/wp-job-board-pro-wc-paid-listings/functions' ); } function superio_register_load_widget() { get_template_part( '/inc/widgets/custom_menu' ); get_template_part( '/inc/widgets/recent_post' ); get_template_part( '/inc/widgets/search' ); get_template_part( '/inc/widgets/socials' ); if ( did_action( 'elementor/loaded' ) ) { get_template_part( '/inc/widgets/elementor-template' ); } if ( superio_is_wp_job_board_pro_activated() ) { get_template_part( '/inc/widgets/candidate-contact-form' ); get_template_part( '/inc/widgets/candidate-info' ); get_template_part( '/inc/widgets/candidate-cv' ); get_template_part( '/inc/widgets/candidate-buttons' ); get_template_part( '/inc/widgets/candidate-socials' ); get_template_part( '/inc/widgets/candidate-tags' ); get_template_part( '/inc/widgets/candidate-maps' ); get_template_part( '/inc/widgets/employer-contact-form' ); get_template_part( '/inc/widgets/employer-info' ); get_template_part( '/inc/widgets/employer-maps' ); get_template_part( '/inc/widgets/job-info' ); get_template_part( '/inc/widgets/job-maps' ); get_template_part( '/inc/widgets/job-tags' ); get_template_part( '/inc/widgets/job-statistics' ); get_template_part( '/inc/widgets/job-also-viewed' ); get_template_part( '/inc/widgets/job-buttons' ); get_template_part( '/inc/widgets/job-social-share' ); get_template_part( '/inc/widgets/job-employer-info' ); get_template_part( '/inc/widgets/job-contact-form' ); get_template_part( '/inc/widgets/user-short-profile' ); } } add_action( 'widgets_init', 'superio_register_load_widget' ); add_filter( 'gutenberg_use_widgets_block_editor', '__return_false' ); add_filter( 'use_widgets_block_editor', '__return_false' ); if ( superio_is_wp_private_message() ) { get_template_part( '/inc/vendors/wp-private-message/functions' ); } get_template_part( '/inc/vendors/elementor/functions' ); get_template_part( '/inc/vendors/one-click-demo-import/functions' ); function superio_register_post_types($post_types) { foreach ($post_types as $key => $post_type) { if ( $post_type == 'brand' || $post_type == 'testimonial' ) { unset($post_types[$key]); } } if ( !in_array('header', $post_types) ) { $post_types[] = 'header'; } return $post_types; } add_filter( 'apus_framework_register_post_types', 'superio_register_post_types' ); /** * Customizer additions. * */ get_template_part( '/inc/customizer' ); /** * Custom Styles * */ get_template_part( '/inc/custom-styles' );<!DOCTYPE html> <html dir="rtl" lang="ar" class="no-js"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width"> <link rel="profile" href="//gmpg.org/xfn/11"> <meta name='robots' content='max-image-preview:large' /> <link rel="alternate" type="application/rss+xml" title="مؤسسة نزّهـ للمقاولات العامة « Understanding the Effects of Oxandrolone خلاصة التعليقات" href="https://nzzah.com/?feed=rss2&p=21468" /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://nzzah.com/index.php?rest_route=%2Foembed%2F1.0%2Fembed&url=https%3A%2F%2Fnzzah.com%2F%3Fp%3D21468" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://nzzah.com/index.php?rest_route=%2Foembed%2F1.0%2Fembed&url=https%3A%2F%2Fnzzah.com%2F%3Fp%3D21468&format=xml" /> <style id='wp-img-auto-sizes-contain-inline-css' type='text/css'> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } /*# sourceURL=wp-emoji-styles-inline-css */ </style> <link rel='stylesheet' id='wp-block-library-rtl-css' href='https://nzzah.com/wp-includes/css/dist/block-library/style-rtl.min.css?ver=6.9.4' type='text/css' media='all' /> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} /*# sourceURL=/wp-includes/css/classic-themes.min.css */ </style> <style id='global-styles-inline-css' type='text/css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-term-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-term-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} /*# sourceURL=global-styles-inline-css */ </style> <link rel='stylesheet' id='contact-form-7-css' href='https://nzzah.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.1' type='text/css' media='all' /> <link rel='stylesheet' id='contact-form-7-rtl-css' href='https://nzzah.com/wp-content/plugins/contact-form-7/includes/css/styles-rtl.css?ver=6.1' type='text/css' media='all' /> <link rel='stylesheet' id='embedpress-style-css' href='https://nzzah.com/wp-content/plugins/embedpress/assets/css/embedpress.css?ver=4.2.9' type='text/css' media='all' /> <link rel='stylesheet' id='htbbootstrap-css' href='https://nzzah.com/wp-content/plugins/ht-mega-for-elementor/assets/css/htbbootstrap.css?ver=2.9.2' type='text/css' media='all' /> <link rel='stylesheet' id='font-awesome-css' href='https://nzzah.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.min.css?ver=4.7.0' type='text/css' media='all' /> <link rel='stylesheet' id='htmega-animation-css' href='https://nzzah.com/wp-content/plugins/ht-mega-for-elementor/assets/css/animation.css?ver=2.9.2' type='text/css' media='all' /> <link rel='stylesheet' id='htmega-keyframes-css' href='https://nzzah.com/wp-content/plugins/ht-mega-for-elementor/assets/css/htmega-keyframes.css?ver=2.9.2' type='text/css' media='all' /> <link rel='stylesheet' id='htmega-global-style-css' href='https://nzzah.com/wp-content/plugins/ht-mega-for-elementor/assets/css/htmega-global-style.css?ver=2.9.2' type='text/css' media='all' /> <link rel='stylesheet' id='joinchat-css' href='https://nzzah.com/wp-content/plugins/creame-whatsapp-me/public/css/joinchat.min.css?ver=4.2.0' type='text/css' media='all' /> <style id='joinchat-inline-css' type='text/css'> .joinchat{ --red:37; --green:211; --blue:102; } /*# sourceURL=joinchat-inline-css */ </style> <link rel='stylesheet' id='dashicons-css' href='https://nzzah.com/wp-includes/css/dashicons.min.css?ver=6.9.4' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-frontend-css' href='https://nzzah.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.35.6' type='text/css' media='all' /> <link rel='stylesheet' id='eael-general-css' href='https://nzzah.com/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/css/view/general.min.css?ver=6.2.2' type='text/css' media='all' /> <script type="text/javascript" src="https://nzzah.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://nzzah.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <link rel="https://api.w.org/" href="https://nzzah.com/index.php?rest_route=/" /><link rel="alternate" title="JSON" type="application/json" href="https://nzzah.com/index.php?rest_route=/wp/v2/posts/21468" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://nzzah.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.9.4" /> <link rel="canonical" href="https://nzzah.com/?p=21468" /> <link rel='shortlink' href='https://nzzah.com/?p=21468' /> <meta name="generator" content="Redux 4.4.17" /><meta name="generator" content="Elementor 3.35.6; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-auto"> <style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } </style> <link rel="icon" href="https://nzzah.com/wp-content/uploads/2021/11/cropped-LOGO-32x32.png" sizes="32x32" /> <link rel="icon" href="https://nzzah.com/wp-content/uploads/2021/11/cropped-LOGO-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://nzzah.com/wp-content/uploads/2021/11/cropped-LOGO-180x180.png" /> <meta name="msapplication-TileImage" content="https://nzzah.com/wp-content/uploads/2021/11/cropped-LOGO-270x270.png" /> </head> <body class="rtl wp-singular post-template-default single single-post postid-21468 single-format-standard wp-theme-superio elementor-default elementor-kit-11"> <br /> <b>Fatal error</b>: Uncaught Error: Call to undefined function superio_get_config() in /home/nzzahcom/public_html/wp-content/themes/superio/header.php:21 Stack trace: #0 /home/nzzahcom/public_html/wp-includes/template.php(814): require_once() #1 /home/nzzahcom/public_html/wp-includes/template.php(749): load_template('/home/nzzahcom/...', true, Array) #2 /home/nzzahcom/public_html/wp-includes/general-template.php(48): locate_template(Array, true, true, Array) #3 /home/nzzahcom/public_html/wp-content/themes/superio/single.php(3): get_header() #4 /home/nzzahcom/public_html/wp-includes/template-loader.php(132): include('/home/nzzahcom/...') #5 /home/nzzahcom/public_html/wp-blog-header.php(19): require_once('/home/nzzahcom/...') #6 /home/nzzahcom/public_html/index.php(17): require('/home/nzzahcom/...') #7 {main} thrown in <b>/home/nzzahcom/public_html/wp-content/themes/superio/header.php</b> on line <b>21</b><br />