Skip to content

Instantly share code, notes, and snippets.

@catoidrobo
Created March 29, 2016 03:22
Show Gist options
  • Save catoidrobo/b07e7cead212d6aba319 to your computer and use it in GitHub Desktop.
Save catoidrobo/b07e7cead212d6aba319 to your computer and use it in GitHub Desktop.
WordPressにカスタム投稿を追加する
// カスタム投稿タイプの追加
add_action( 'init', 'create_post_type' );
function create_post_type() {
register_post_type( 'news', // 投稿タイプ名の定義
array(
'labels' => array(
'name' => __( 'ニュース' ), // 表示する投稿タイプ名
'singular_name' => __( 'ニュース' )
),
'public' => true,
'has_archive' => true,
'menu_position' => 5,
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment