Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我有一个如下所示的页面结构:
因此,团队基本上是一个类别存档页面,其中列出了标记为“团队”的帖子。有没有办法让每个团队帖子与餐厅 1、2 或 3 相关联,而无需手动将它们添加为子类别?
您始终可以设置一个名为“相关餐厅”的自定义字段,然后使用您要关联的餐厅的名称或 ID 填写该值。然后你会从团队帖子中获取数据,如下所示:
<?php echo get_post_meta(get_the_ID(), 'Related Restaurant', true); ?>
我不确定您究竟想如何利用这些数据,所以您如何处理这些数据完全取决于您自己。