サーチ…


構文

  1. add_action( 'init'、呼び出し可能な$関数)

備考

initは、WordPressの読み込みが終了した後、HTTPヘッダーが送信される前にinitれるアクションフックです。

$ _POSTリクエストデータの処理中

add_action( 'init'、 'process_post_data');

function process_post_data() {
    if( isset( $_POST ) ) {
        // process $_POST data here
    }
}

$ _GETリクエストデータを処理中

add_action('init', 'process_get_data');

function process_get_data() {
    if( isset( $_GET ) ) {
        // process $_GET data here
    }
}

カスタム投稿タイプの登録

add_action( 'init', function() {
    register_post_type( 'event', array(
            'public' => true,
            'label'  => 'Events'
        );
    );
});

Eventsとスラッグeventというラベルの新しいカスタム投稿タイプを登録しevent



Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow