时间:2024-03-26
我是一位网站开发者,为了方便客户更新和维护网站,我们通常会添加自定义文章类型。WordPress提供了方便的函数register_post_type来添加不同的文章类型。然而,如果我们需要频繁使用这些功能,每次都要复制粘贴并修改一大堆参数,肯定是很浪费时间的。因此,我们编写了一个简单的函数,使添加自定义文章类型变得更快捷。以下是全部函数代码:
function create_types($slug, $name){ // 自定义文章类型标签 $labels_type = array( 'name' => $name, 'singular_name' => $name, 'add_new' => '添加'.$name, 'add_new_item' => '添加新'.$name, 'edit_item' => '编辑'.$name, 'new_item' => '新'.$name, 'all_items' => '所有'.$name, 'view_item' => '查看'.$name, 'search_items' => '搜索'.$name, 'not_found' => '没有找到'.$name, 'not_found_in_trash' => '没有在回收站中找到'.$name, 'parent_item_colon' => '', 'menu_name' => $name, ); // 自定义文章类型参数 $args_type = array( 'labels' => $labels_type, 'public' => true, 'publicly_queryable' => true, 'show_ui' => true, 'show_in_menu' => true, 'query_var' => true, 'rewrite' => array('slug' => $slug), 'capability_type' => 'post', 'has_archive' => true, 'hierarchical' => false, 'menu_position' => null, 'supports' => array('title','editor','author','thumbnail','comments'), 'description'=> '这是自定义文章类型的描述' ); // 注册自定义文章类型 register_post_type($slug, $args_type); }
将以上代码添加到WordPress主题的functions.php文件中。当需要添加自定义文章类型时,只需在文件的最后一行添加:
create_types("product", "产品");
即可添加一个名为“产品”的自定义文章类型。是不是很简单?如果你有更好的方法,欢迎在留言中交流。
Copyright © 2019-2024 19.org.cn