プロフィール
とん吉
とん吉
はじめまして、とん吉でぅ。

とん吉ブログを読んでいただき、まこちにありがとうごじます。
< 2012年09>
S M T W T F S
            1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30            
オーナーへメッセージ

スポンサーサイト


上記の広告は30日以上更新(記事投稿)のないブログに表示されています。  

Posted by スポンサーサイト at

WP|カスタム投稿の用意

2012年09月04日
プラグインは使わず、現在のテーマのfunction.phpに下記を追記。(かなり簡単に…)

<?php
add_action( 'init', 'create_post_type' );
function create_post_type() {
register_post_type( 'bland',
array(
'labels' => array(
'name' => __( 'ブランド' ),
'singular_name' => __( 'ブランド' )
),
'public' => true,
'has_archive' => true,
'menu_position' => 100,
)
);
}
?>

これで左メニューにブランドというリンクができます。

下記サイトより引用
http://8works-web.com/2011/06/29/wordpress_register_post_type_custom_field_template/
  

Posted by とん吉 at 15:43Comments(0)WordPress