Created
March 29, 2016 03:22
-
-
Save catoidrobo/b07e7cead212d6aba319 to your computer and use it in GitHub Desktop.
WordPressにカスタム投稿を追加する
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// カスタム投稿タイプの追加 | |
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