我很抱歉这个新手问题因为我刚开始学习php。我正在尝试创建一个从自定义帖子类型中提取数据的表格,并使用相同帖子类型的其他帖子重复。我用一些php创建了第一部分,但我想要重复自定义帖子类型。
<table>
<tr>
<td><?php the_title(); ?></td>
<td><?php echo get_the_term_list( $post->ID, 'degrees', 'Degrees Offered: ', ', ' ); ?></td>
<td><?php echo get_the_term_list( $post->ID, 'program_location', 'Program Location(s): ', ', ' ); ?></td>
<td><?php echo get_the_term_list( $post->ID, 'institution_type', 'Institution Type: ', ', ' ); ?></td>
</tr>
<tr>
<td>Post 2 Title</td>
<td>Post 2 Degrees Offered</td>
<td>Post 2 Program Locations</td>
<td>Post 2 Institution Type</td>
</tr>
<tr>
<td>Post 3 Title</td>
<td>Post 3 Degrees Offered</td>
<td>Post 3 Program Locations</td>
<td>Post 3 Institution Type</td>
</tr>
</table>
答案 0 :(得分:0)
你可以在wordpress CODEX中查看wp_query,它可以让你具体获取post_types并迭代它们。
参考。 https://codex.wordpress.org/Class_Reference/WP_Query
示例代码:
[32msome text