HEX
Server: nginx/1.16.1
System: Linux VM-0-14-centos 4.18.0-348.7.1.el8_5.x86_64 #1 SMP Wed Dec 22 13:25:12 UTC 2021 x86_64
User: www (1000)
PHP: 8.3.31
Disabled: 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
Upload Files
File: /www/wwwroot/www.sceysls.com/wp-content/themes/Zing-Pro/functions.php
<?php

/** --------------------------------------------------------------------------------- *
 *  主题框架
 *  --------------------------------------------------------------------------------- */
include TEMPLATEPATH.'/admin/dahuzi-framework/dahuzi-framework.php';

/** --------------------------------------------------------------------------------- *
 *  核心文件
 *  --------------------------------------------------------------------------------- */
include TEMPLATEPATH.'/public/zing-functions.php'; //zing主题相关
include TEMPLATEPATH.'/public/core/admin-page.php';
include TEMPLATEPATH.'/public/extend/xintheme-seo.php'; //SEO设置
include TEMPLATEPATH.'/public/basic-functions.php'; //通用函数
include TEMPLATEPATH.'/public/wp-optimize.php'; //WP优化
include TEMPLATEPATH.'/public/extend-functions.php'; //扩展功能
include TEMPLATEPATH.'/public/widget.php'; //小工具
include TEMPLATEPATH.'/public/comment.php'; //评论相关
include TEMPLATEPATH.'/public/dahuzi-contact.php'; //在线留言

include TEMPLATEPATH.'/public/core/encryption.php';


//echo home_url(add_query_arg(array()));
//echo home_url(add_query_arg(array(),$wp->request));


//移除网址链接中的参数,避免被刷广告
function dhz_remove_query_strings() {
    //跳过后台和搜索页面
    if (is_admin() || is_search()) {
        return;
    }
    if (strpos($_SERVER['REQUEST_URI'], '?') !== false) {
        //获取当前链接
        $current_url = home_url(add_query_arg(array()));
        //301重定向至不带参数的链接
        wp_redirect(strtok($current_url, '?'), 301);
        exit();
    }
}
//add_action('template_redirect', 'dhz_remove_query_strings');