在WordPress中创建自定义帖子类型,您需要使用register_post_type()
函数。以下是一个基本的示例,说明如何使用此函数来创建一个名为“Book”的自定义帖子类型。
首先,您需要在您的插件文件或者主题的functions.php
文件中添加以下代码:
function create_book_post_type() {
// 设置标签(复数名称)
$labels = array(
'name' => _x( 'Books', 'Post Type General Name', 'textdomain' ),
'singular_name' => _x( 'Book', 'Post Type Singular Name', 'textdomain' ),
'menu_name' => __( 'Books', 'textdomain' ),
'name_admin_bar' => __( 'Book', 'textdomain' ),
'archives' => __( 'Book Archives', 'textdomain' ),
'attributes' => __( 'Book Attributes', 'textdomain' ),
'parent_item_colon' => __( 'Parent Book:', 'textdomain' ),
'all_items' => __( 'All Books', 'textdomain' ),
'add_new_item' => __( 'Add New Book', 'textdomain' ),
'add_new' => __( 'Add New', 'textdomain' ),
'new_item' => __( 'New Book', 'textdomain' ),
'edit_item' => __( 'Edit Book', 'textdomain' ),
'update_item' => __( 'Update Book', 'textdomain' ),
'view_item' => __( 'View Book', 'textdomain' ),
'view_items' => __( 'View Books', 'textdomain' ),
'search_items' => __( 'Search Book', 'textdomain' ),
'not_found' => __( 'Not found', 'textdomain' ),
'not_found_in_trash' => __( 'Not found in Trash', 'textdomain' ),
'featured_image' => __( 'Featured Image', 'textdomain' ),
'set_featured_image' => __( 'Set featured image', 'textdomain' ),
'remove_featured_image' => __( 'Remove featured image', 'textdomain' ),
'use_featured_image' => __( 'Use as featured image', 'textdomain' ),
'insert_into_item' => __( 'Insert into book', 'textdomain' ),
'uploaded_to_this_item' => __( 'Uploaded to this book', 'textdomain' ),
'items_list' => __( 'Books list', 'textdomain' ),
'items_list_navigation' => __( 'Books list navigation', 'textdomain' ),
'filter_items_list' => __( 'Filter books list', 'textdomain' ),
);
// 设置参数
$args = array(
'label' => __( 'Book', 'textdomain' ),
'description' => __( 'Book custom post type', 'textdomain' ),
'labels' => $labels,
'supports' => array( 'title', 'editor', 'thumbnail', 'revisions', 'custom-fields' ),
'taxonomies' => array( 'category', 'post_tag' ),
'hierarchical' => false,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'menu_position' => 5,
'show_in_admin_bar' => true,
'show_in_nav_menus' => true,
'can_export' => true,
'has_archive' => true,
'exclude_from_search' => false,
'publicly_queryable' => true,
'capability_type' => 'post',
);
// 注册自定义帖子类型
register_post_type( 'book', $args );
}
// 当初始化钩子被触发时,添加我们的函数
add_action( 'init', 'create_book_post_type', 0 );
在这个例子中,我们首先定义了标签数组$labels
,它包含了自定义帖子类型在不同上下文中显示的文本。然后,我们定义了参数数组$args
,它包含了关于帖子类型的各种设置,如是否支持特色图像、分类法等。
最后,我们使用add_action()
函数将create_book_post_type
函数绑定到WordPress的init
动作上,这样在WordPress初始化时会调用我们的函数来注册自定义帖子类型。
记得将'textdomain'
替换为您的文本域,这样您就可以使用翻译文件来本地化您的自定义帖子类型。