在WordPress插件中,如何使用register_post_type()来创建自定义文章类型?

2024-10-09 96 0

在WordPress中创建自定义文章类型,您需要使用register_post_type()函数。以下是一个基本的示例,说明如何使用此函数来创建一个名为“Book”的自定义文章类型。

首先,您需要在您的主题的functions.php文件中或者在一个单独的插件文件中添加以下代码:

function create_book_post_type() {
    // 设置标签,以便WordPress可以正确地处理它们
    $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 );
}

// 使用init钩子来添加我们的函数到WordPress
add_action( 'init', 'create_book_post_type', 0 );

在这个例子中,我们首先定义了一个标签数组$labels,它包含了自定义文章类型在后台显示的所有文本。然后我们定义了一个参数数组$args,它告诉WordPress如何处理这个新的自定义文章类型。

最后,我们使用add_action()函数将create_book_post_type()函数绑定到WordPress的init钩子上,这样在WordPress初始化时就会创建自定义文章类型。

请注意,'textdomain'应该替换为您实际的文本域,它用于国际化支持。如果您的插件或主题不涉及国际化,您可以将'textdomain'替换为空字符串。

相关文章

在WordPress主题开发中,如何使用wp_nav_menu()函数来自定义菜单?
如何使用the_post()函数在WordPress主题中循环显示文章?
在WordPress插件开发中,如何创建自定义数据库表?
如何使用WordPress的wp_nav_menu()函数自定义菜单输出?
在WordPress插件开发中,如何使用选项API来保存和获取插件设置?
如何使用WordPress的the_post()函数在主题中循环输出内容?