プロフィール

とん吉
MENU
最近の記事
節分 (2/4)
静岡新聞 2013年2月12日 夕刊 (2/13)
息子が図書券で買った本 (9/10)
WP|カスタム投稿の用意 (9/4)
WordPress|記事内の一枚目の画像を取得する (8/28)
息子のため (7/26)
念願のベットが到着!! (7/20)
過去記事
最近のコメント
Roseanne Keys / Custom Fields Searchとカス・・・
Doreen Salo / Custom Fields Searchとカス・・・
Leigh Banuelos / WP|Contact form 7へタイト・・・
Josef Monahan / Custom Fields Searchとカス・・・
Lionel Fegan / WP|Contact form 7へタイト・・・
ブログ内検索
WP|カスタム投稿の用意
2012年09月04日
プラグインは使わず、現在のテーマのfunction.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/
<?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/
アクセスカウンタ