在WordPress中,可以使用reGISter_post_type()函数来创建自定义文章类型。以下是一个创建自定义文章类型的示例代码:function create_custom_post_type() {$args = array
在WordPress中,可以使用reGISter_post_type()函数来创建自定义文章类型。
以下是一个创建自定义文章类型的示例代码:
function create_custom_post_type() {
$args = array(
'labels' => array(
'name' => 'Custom Posts',
'singular_name' => 'Custom Post',
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'custom-posts'),
);
register_post_type('custom_post', $args);
}
add_action('init', 'create_custom_post_type');
在这个示例中,我们创建了一个名为'Custom Posts'的自定义文章类型,并将其包含的文章称为'Custom Post'。
参数'public'设置为true,表示这个自定义文章类型可以在前台显示。
参数'has_arcHive'设置为true,表示可以为这个自定义文章类型创建一个归档页面。
参数'rewrite'设置了自定义文章类型的URL重写规则,我们将其slug设置为'custom-posts',这样文章的URL将会是example.com/custom-posts/post-slug。
最后,我们使用add_action()函数将create_custom_post_type函数与init钩子关联起来,以确保在WordPress初始化时创建自定义文章类型。
要使用这个示例,只需将以上代码添加到你的主题的functions.PHP文件中即可。然后,你就可以在WordPress后台的文章菜单下看到一个新的'Custom Posts'选项。
--结束END--
本文标题: WordPress中设置Post Type自定义文章类型的实例教程
本文链接: https://lsjlt.com/news/368455.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-27
2023-10-27
2023-10-26
2023-10-25
2023-10-21
2023-10-21
2023-10-18
2023-10-12
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0