我对下面的代码有问题。我正在使用 get_query 在名为 page-portfolio 的页面模板上从名为投资组合类型的自定义帖子类型中获取内容。该代码旨在查找所有新的投资组合项目并将它们显示为图库。我的问题是每个投资组合项目都显示为前一个项目的子项目。我认为这与我的花括号的放置方式有关,但我似乎无法弄清楚。
<?php
// The Query
$the_query = new WP_Query( $args );
?>
<?php
// The Loop
if ( $the_query->have_posts() ) {
while ( $the_query->have_posts() ) {
$the_query->the_post();
?>
<?php
$title= str_ireplace('"', '', trim(get_the_title()))
$desc= str_ireplace('"', '', trim(get_the_content()));
?>
<div class="item">
<?php $site= get_post_custom_values('projLink');
if($site[0] != ""){
?>
<div class="img">
<a title="<?=$title?>: <?=$desc?>" href="<?=$site[0]?>"><?php the_post_thumbnail(); ?>
</a>
</div>
<?php }}}
else{ ?>
<p><em>You need to post your link.</em></p>
<?php } ?>
</div>
<?php
/* Restore original Post Data */
phpwp_reset_postdata();
?>
你可以在这里看到结果,你会看到下一项是上一项的 50%。我的 css 正在这样做,但我应该能够在这个画廊上使用这个 css 样式而不会发生这个问题。