创建过滤器以显示自定义帖子类型的步骤如下:
function create_custom_post_type() {
$labels = array(
'name' => '产品',
'singular_name' => '产品',
'menu_name' => '产品',
'add_new' => '添加新产品',
'add_new_item' => '添加新产品',
'edit_item' => '编辑产品',
'new_item' => '新产品',
'view_item' => '查看产品',
'search_items' => '搜索产品',
'not_found' => '未找到产品',
'not_found_in_trash' => '回收站中未找到产品'
);
$args = array(
'labels' => $labels,
'public' => true,
'has_archive' => true,
'menu_icon' => 'dashicons-products',
'supports' => array('title', 'editor', 'thumbnail', 'excerpt', 'custom-fields'),
);
register_post_type('product', $args);
}
add_action('init', 'create_custom_post_type');
希望以上回答能够满足你的需求。如果你需要了解更多关于云计算、IT互联网领域的名词和概念,可以随时提问。
领取专属 10元无门槛券
手把手带您无忧上云