将自定义域插入到自定义帖子类型

时间:2013-04-01 作者:Adam Matan

我正在写一个关于我徒步旅行和露营经历的小博客。由于不同的体验(如露营地、徒步旅行和旅行社)具有不同的元数据,I have created a custom post types (e.g. campsite), associated with custom field types (e.g. price, water_supply).

现在我尝试在我的子主题中使用这些字段。我抄了《十二点二十》-家长-single.phpsingle-campsite.php, 然后开始挖掘。

问题是,整个帖子内容(标题、内容和日期)都是从这一行创建的:

<?php get_template_part( \'content\', get_post_format() ); ?>

How do I edit the post internals, e.g. insert custom fields between the title and the contents, or remove the date below?

1 个回复
最合适的回答,由SO网友:joshcanhelp 整理而成

该语句获取一个名为content post format的文件。主题目录中的php,具体取决于帖子格式。帖子会抓取内容。php,因为没有post格式。

从内容中复制信息。php进入单个营地。php并从那里开始。或者,您可以创建内容的副本。php称为内容营地。php和调用:

<?php get_template_part( \'content\', \'campsite\' ); ?>

结束

相关推荐