WP|カスタム投稿の用意
プラグインは使わず、現在のテーマの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/
関連記事