您可以通过向[位置]页面添加自定义分类来实现这一点。然后,您可以使用此自定义分类法将帖子放在手风琴的相应部分。
$args = array( // Array can be extended with additional arguments
\'tax_query\' => array(
array(
\'taxonomy\' => \'your-location-taxonomy\', // Name of your custom taxonomy
\'field\' => \'location\', // Name of the field in your taxonomy
\'terms\' => \'North East\', // Value of the field in your taxonomy
)
)
);
// Execute your query with the given arguments.
$query = new WP_Query( $args );
// Check that we have query results.
if ( $query->have_posts() ) {
// Start looping over the query results.
while ( $query->have_posts() ) {
$query->the_post();
// Build your accordion elements here
}
}
// Restore original post data.
wp_reset_postdata();
您可以通过位置分类字段的所有潜在值将上述代码包装在一个循环中。
更多关于Taxonomies 和WP_Query 可以在相应的链接中找到