WP カスタム投稿タイプを追加するfunctions.phpの書き方

WP カスタム投稿タイプを追加するfunctions.phpの書き方

/* カスタム投稿タイプの追加 */
add_action( 'init', 'create_post_type' );
function create_post_type() {
  register_post_type( 'products', /* post-type */
    array(
      'labels' => array(
        'name' => __( '商品' ),
        'singular_name' => __( '商品' )
      ),
      'public' => true,
      'menu_position' =>5,
    )
  );
}
※商品となっているところは、好きなものに変更してください!

参考サイト
http://32.flerz.com/wordpress/996/

ポチッ☆とクリックお願いします!
↓ ↓ ↓

  • にほんブログ村 IT技術ブログ ホームページ・サイト制作支援へ

コメントは受け付けていません。

サブコンテンツ

TOP