自定义列表的WordPress术语

时间:2013-08-22 作者:Xian Garcia

你介意帮我一下吗。我对编程很有经验,但对wordpress还是很陌生。我的任务是处理这件事。我只想知道这些是什么(带有pin图标的):Image is here (我似乎无法在这里发布没有10+声誉的图片,抱歉)

在SharePoint中,这可能是自定义列表,我只是不确定它在wordpress中的名称。我需要知道它的名字才能找到它。此外,如何添加新的“列表”,导出和导入内置内容。非常感谢你的帮助

2 个回复
SO网友:Marcel

在wordpress中,它们被称为自定义帖子类型。例如,您可以在函数中创建它们。php。网上有很多这样做的例子。

SO网友:Tom J Nowell

这些是自定义帖子类型。

您可以通过在页面加载时向WordPress注册来创建它们。您可以通过以下方式调用register\\u post\\u type来完成此操作:

你的主题functions.phpinit 在一个小插件(Highly Recommended method, good for data portability )您可以这样调用register\\u post\\u类型:

function codex_custom_init() {
    $args = array( \'public\' => true, \'label\' => \'Books\' );
    register_post_type( \'book\', $args );
}
add_action( \'init\', \'codex_custom_init\' );

Read more about register_post_type

You can also use this handy generator to create the code for you after giving it some information like a name and description

您可能还对阅读自定义分类法感兴趣(类别和标记是分类法)

结束

相关推荐

GET_TERMS不返回任何自定义分类

我有一个自定义的帖子类型,叫做project 调用自定义分类法tagportfolio我使用此代码生成以下两个: add_action(\'init\', \'project_custom_init\'); /*-- Custom Post Init Begin --*/ function project_custom_init() { $labels = array( \'name\' => _x(\'Project