处理 GET 请求数据
add_action('init', 'process_get_data');
function process_get_data() {
    if( isset( $_GET ) ) {
        // process $_GET data here
    }
}
add_action('init', 'process_get_data');
function process_get_data() {
    if( isset( $_GET ) ) {
        // process $_GET data here
    }
}