我想根據字段是否具有'copyclearance'的值來過濾內容。它正在過濾,而不是顯示具有'copyclearance'值的內容,而是隱藏它並顯示其他內容。我如何替換它,以便它只顯示值爲'copyclearance'的內容。Php過濾內容錯誤
<?php while(has_sub_field('team_profile')):
$category = get_sub_field('category');
if($category!='copyclearance'){ ?>
<li class="col-lg-3 teamProfile">
<img src="<?php the_sub_field('user_image'); ?>" class="img-responsive"/>
<h2><?php the_sub_field('profile_name'); ?></h2>
<p class="jobTitle"><?php the_sub_field('category'); ?></p>
<p><?php the_sub_field('bio'); ?></p>
</li>
<?php }
endwhile; ?>
如果改變($類!= 'copyclearance')到如果($類== 'copyclearance') – Steve
如果邏輯錯誤的執行,總是PHP的錯:P – DanFromGermany