我正在创建这篇自定义帖子(这是一种图片库)。每个自定义帖子也有这样的分类法,它作为类别类型/帖子类型工作。
我的问题是,如何创建自定义模板页面,以及在该循环中创建与分类法相对应的数据?该文件应命名为什么?
THE CUSTOM POST
$gallery_labels = array(
\'name\' => _x(\'Photo gallery\', \'post type general name\'),
\'singular_name\' => _x(\'Gallery\', \'post type singular name\'),
\'parent_item_colon\' => \'\'
);
$gallery_args = array(
\'labels\' => $gallery_labels,
\'public\' => true,
\'publicly_queryable\' => true,
\'show_ui\' => true,
\'query_var\' => true,
\'capability_type\' => \'post\',
\'supports\' => array(\'title\',\'thumbnail\')
);
register_post_type(\'gallery\', $gallery_args);
REGISTER TAXONOMIE
add_action( \'init\', \'gallery_taxonomies\', 0);
function gallery_taxonomies(){
register_taxonomy(
\'phototype\',
\'gallery\',
array(
\'hierarchical\'=> true,
\'label\' => \'Photo Types\',
\'singular_label\' => \'Photo Type\',
\'rewrite\' => true
)
);
}
假设我有这些分类法
name descripton slug
A ... a
B ... b
C ... c
然后是我使用分类法(类别样式)的自定义帖子
thumnail title phototype
1.png one a a
2.png two a a
3.png one b b
4.png one c c
5.png two c c
所以如果我转到页面
我的网址。com/phototype=a它应该显示
一个a两个a