更新我的问题。为了记录,我创建了一个自定义帖子类型“menu”,其中包含一个帖子列表页面“menus”,以及该自定义帖子的单个实例“menu/monday”、“menu/周二”等。
我试图使用get\\u template\\u part()函数访问这个实例的内容,以便在我的首页上显示它。
以下是我最终的行动:
首先,我为include“content monday”创建了一个新的php:
<?php
$args = array(
\'post_type\' => \'menu\',
\'name\' => \'monday\'); // using Milo\'s code here to fetch the content of my single-custom
$the_query = new WP_Query( $args );
?>
<?php if ( have_posts() ) : while ($the_query->have_posts() ) : $the_query->the_post() ;?>
<?php the_field( \'plat_vegetarien\' ); ?>
<?php endwhile; else: ?>
<p>No post!</p>
<?php endif; ?>
然后,我使用get\\u template\\u part()在我的首页上显示内容:
get_template_part( \'content\', \'monday\' );
到目前为止,它似乎工作得很好,感谢米洛的帮助!