我正在尝试将模板的一部分插入类别存档页。
我该怎么办?
我想我需要这样的东西:
<?php
$catarray = get_the_category( $post->ID );
foreach ($catarray as $cat) {
$catid = $cat->term_id;
if ($catid == 10) {
get_template_part(\'1\',\'2\') << ?
}
if ($catid == 7) {
get_template_part(\'3\',\'4\') << ?
}
}
?>