我在WP\\U查询循环中显示自定义帖子类型时遇到问题,在我的帖子缩略图下,我一直看到标记(“>”),好像我没有正确关闭标签。此外,在该图像下,我显示价格的第一个自定义字段根本没有显示,但我知道它就在那里,如果我使用
highlight_string("<?php\\n\\$ACF-fields =\\n" . var_export(get_fields(), true) . ";\\n?>");
我看到了价格的价值。
这是循环:
<?php
$args = array(
"post_type" => "piso"
);
$the_query = new WP_Query( $args );
?>
<?php if( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<div class="pisos-grid-item-wrap <?php $comprar_alquilar ?>"
<a href="<?php the_permalink(); ?>">
<img src="<?php the_post_thumbnail( \'post-thumbnail\', array(\'width\'=>\'270\') ); ?>">
</a>
<h1> <?php echo $precio ?> € </h1>
<h2> <?php the_title(); ?> </h2>
<h3> <?php echo $donde ?> </h3>
</div>
<?php endwhile; endif; ?>
此外,这可能值得一提新问题,但是否有一种简单的方法可以将自定义字段添加为我的主贴子包装的一个类?