自定义字段仅在有帖子内容时显示的原因是由于此行:
<?php if( get_the_content() ):?><h3>
只有当get\\u the\\u content()返回真实的内容时,该行之后的所有内容才会出现。原因是您使用的是一个速记if语句,而不是在自定义字段逻辑之前尝试以下操作:
>
<?php if( get_the_content() ):?><h3>
<?php
//this closes the if statment
endif;
?>
<?php
echo types_render_field("nome-do-aeroporto", array("argument1"=>"value1","argument2"=>"value2","argument2"=>"value2"));
?>
<br/>
<?php
echo types_render_field("cidade", array("argument1"=>"value1","argument2"=>"value2","argument2"=>"value2"));
?>
我想知道你为什么首先使用if语句。
希望这有帮助