在我的页面上,我有一个作为CPT的工作人员列表。其中一些具有其他认证和/或生物特征。
如果认证字段或生物字段包含内容,我如何添加“更多”链接,但仅?
答案 0 :(得分:0)
您可以执行以下操作。如果您正在寻找或如前所述,您可以只检查“认证”字段,如果该字段具有值,则显示链接。如果没有检查生物领域。有值显示链接。
<?php
$certs = get_field( "cert_field" ); // add field name here for certifications
$bio = get_field( "bio_field" ); // add field name here for bio
<?php if($certs) : ?> <!-- Check if cert field has value -->
<a href="#">Read More</a> <!-- If true it will show read more -->
<?php else if($bio) : ?> // Else check for bio field
<a href="#">Read More</a> <!-- If true it will show read more -->
<?php endif; ?>