要更改帖子模板,请调用update_post_meta($query->the_post->ID, \'_wp_page_template\', \'YOUR-NEW-TEMPLATE-HERE.php\')
下面是@Xeross链接中的WP Codex中的示例,其中包含原始问题的代码片段:
$query = new WP_Query($args);
while ( $query->have_posts() ) : $query->the_post();
if ( has_tag(\'tag-slug\') )
{
/* CHANGE TEMPLATE OF $post */
update_post_meta($query->the_post->ID, \'_wp_page_template\', \'YOUR-NEW-TEMPLATE-HERE.php\');
}
endwhile;
wp_reset_postdata();
感谢@Xeross在链接中提供了答案,并提供了有关模板数据存储位置的文档。更多信息请参见@Xeross的答案
https://wordpress.stackexchange.com/a/24933/69247