WordPress add_action-初始化

示例

add_action('init', 'process_post');

function process_post(){
   if($_POST)
     var_dump($_POST);
}