wp カスタム投稿を作成
2013.11.26
スタッフブログ
ども、タカミチです。
前々回でカスタム投稿を追加するプラグインを紹介しましたが、
自力でカスタム投稿タイプを作成するにはどうすれば良いか調べてみることに
なるほど、簡単そうだ。
function.phpに↓を追記します。
add_action( ‘init’, ‘create_post_type’ );
function create_post_type() {
register_post_type( ‘store’, /* post-type */
array(
‘labels’ => array(
‘name’ => __( ‘お店’ ),
‘singular_name’ => __( ‘お店’ )
),
‘public’ => true,
‘menu_position’ =>5,
)
);
}
function create_post_type() {
register_post_type( ‘store’, /* post-type */
array(
‘labels’ => array(
‘name’ => __( ‘お店’ ),
‘singular_name’ => __( ‘お店’ )
),
‘public’ => true,
‘menu_position’ =>5,
)
);
}
これでカスタム投稿タイプstoreができあがり、管理画面にはお店というカスタム投稿が表示されました。
これだけです。
phpは通常はsingle.phpをよんで表示してくれるみたいです。
あーこれならプラグインつかわずにいけたなー