WordPress主题开发教程PHP版
Published
2023-03-10
浏览次数 : 195
添加产品自定义字段
我们用register_post_type函数来添加产品自定义字段。当然如果你有ai的话你也可以用ai帮你生成完整的代码。
我们在framework/plugins下面新建hatrade_cpt.php文件,为什么建在plugins文件夹下面,因为根据wp的规范,自定义的字段最好建立在插件下,我们这里没有插件,但是我们把该建立在插件的文件建立在了隶属于插件一类的文件夹。
在hatrade_cpt.php文件里,新建代码:注意这里用了__() 函数,这个是翻译函数,后期汉化或者国际化主题的时候可以用到。
// Register the custom post type
function create_product_post_type() {
$labels = array(
'name' => __( 'Products', 'text-domain' ),
'singular_name' => __( 'Product', 'text-domain' ),
'menu_name' => __( 'Products', 'text-domain' ),
'name_admin_bar' => __( 'Product', 'text-domain' ),
'add_new' => __( 'Add New', 'text-domain' ),
'add_new_item' => __( 'Add New Product', 'text-domain' ),
'new_item' => __( 'New Product', 'text-domain' ),
'edit_item' => __( 'Edit Product', 'text-domain' ),
'view_item' => __( 'View Product', 'text-domain' ),
'all_items' => __( 'All Products', 'text-domain' ),
'search_items' => __( 'Search Products', 'text-domain' ),
'parent_item_colon' => __( 'Parent Products:', 'text-domain' ),
'not_found' => __( 'No products found.', 'text-domain' ),
'not_found_in_trash' => __( 'No products found in Trash.', 'text-domain' )
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'product' ),
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => null,
'supports' => array( 'title', 'editor', 'thumbnail', 'excerpt' )
);
register_post_type( 'product', $args );
}
add_action( 'init', 'create_product_post_type' );
// Register the custom taxonomy
function create_branch_taxonomy() {
$labels = array(
'name' => __( 'Branches', 'text-domain' ),
'singular_name' => __( 'Branch', 'text-domain' ),
'search_items' => __( 'Search Branches', 'text-domain' ),
'popular_items' => __( 'Popular Branches', 'text-domain' ),
'all_items' => __( 'All Branches', 'text-domain' ),
'parent_item' => null,
'parent_item_colon' => null,
'edit_item' => __( 'Edit Branch', 'text-domain' ),
'update_item' => __( 'Update Branch', 'text-domain' ),
'add_new_item' => __( 'Add New Branch', 'text-domain' ),
'new_item_name' => __( 'New Branch Name', 'text-domain' ),
'separate_items_with_commas' => __( 'Separate branches with commas', 'text-domain' ),
'add_or_remove_items' => __( 'Add or remove branches', 'text-domain' ),
'choose_from_most_used' => __( 'Choose from the most used branches', 'text-domain' ),
'not_found' => __( 'No branches found.', 'text-domain' ),
'menu_name' => __( 'Branches', 'text-domain' ),
);
$args = array(
'hierarchical' => true,
'labels' => $labels,
'show_ui' => true,
'show_admin_column' => true,
'query_var' => true,
'rewrite' => array( 'slug' => 'branch' ),
);
register_taxonomy( 'branch', 'product', $args );
}
add_action( 'init', 'create_branch_taxonomy' );
现在我们去后台看,侧边栏多了一个Product的菜单和一个branch的分类。
我们新建几个产品。
产品主题我们可以在https://app.flair.ai/ 这个ai上去生成。