招生信息港
中央音乐学院 – 招生信息列表
‘post’,
‘posts_per_page’ => -1,
‘post_status’ => ‘publish’,
‘tax_query’ => array(
array(
‘taxonomy’ => ‘category’,
‘field’ => ‘name’,
‘terms’ => $college,
‘parent’ => get_cat_ID(‘音乐院校招生’) // 父分类ID
)
)
);
$query = new WP_Query($args);
$articles = array();
if ($query->have_posts()) {
while ($query->have_posts()) {
$query->the_post();
// 获取文章标签
$tags = get_the_tags();
$tag_names = array();
if ($tags) {
foreach ($tags as $tag) {
$tag_names[] = $tag->name;
}
}
$articles[] = array(
‘title’ => get_the_title(),
‘permalink’ => get_permalink(),
‘excerpt’ => wp_trim_words(get_the_excerpt(), 100),
‘date’ => get_the_date(‘Y-m-d’),
‘category’ => get_the_category()[0]->name,
‘tags’ => implode(‘, ‘, $tag_names) ?: ‘无’
);
}
wp_reset_postdata();
}
wp_send_json_success(array(‘articles’ => $articles));
}
?>


