我正在处理的是在单击前端的自定义分类法后转到的页面。我已经到了复制类别的地步。php,将其重命名为taxonomy-tr\\u property\\u region。php,以便编辑带有taxonomy tr\\u property\\u区域的帖子的显示方式。
如果我理解正确,我需要编辑循环。php,但我不想要taxonomy-tr\\u property\\u region。php看起来与分类语言相同。php有没有办法不使用get\\u template\\u part(\'循环\',\'类别\');
例如,我想改变这一点
get_template_part( \'loop\', \'category\' );
更像这样,
<div>
<?php
$loop = whatever replaces get_template_part( \'loop\', \'category\' );
?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<div class="fullWidthContent">
<div class="trPropSearchHeader">
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php $meta = get_post_meta(get_the_ID(), \'rw_propCity\', true); echo $meta; ?>
</div>
<div class="trPropSearchThumbnail">
<?php if ( has_post_thumbnail()) : ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >
<?php the_post_thumbnail(\'thumbnail\'); ?>
</a>
<?php endif; ?>
</div>
<div class="trPropSearchDetailsContainer">
<?php $meta = get_post_meta(get_the_ID(), \'rw_propBedrooms\', true); echo $meta; ?>
<?php $meta = get_post_meta(get_the_ID(), \'rw_propBathrooms\', true); echo $meta; ?>
<?php $meta = get_post_meta(get_the_ID(), \'rw_propDesc\', true); echo $meta; ?>
</div>
<div class="clear"></div>
</div>
<?php endwhile; ?>
</div>
最合适的回答,由SO网友:MartinJJ 整理而成
我将这样做:
为什么不包括另一个循环。php,例如copyloop.category.php
, 将其重命名为loop-copy.php
对其进行更改并将其调用到模板<?php get_template_part( \'loop\', \'copy\' ); ?>
.