處理 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
}
}