I've made a content type for links, I'm trying to make a link directory. People only have to submit the link, description is voluntary. If no description is entered, I want the header that says "description" to disappear. The description field is the node body. Right now my snippet looks like this
<?php if (!empty($node->body)) {?>
<div class="field field-type-link field-field-link-archive">
<h3>Description</h3>
<?php print $node->content['body']['#value'] ?></div>
<?php }?>
Ben düğüm gövdesi boş değilse, bu kontrol bekliyoruz, ve eğer değilse orada ne basalım. Sorun düğüm vücut boş olsa bile Açıklama başlık hala basılmış olmasıdır. Herkes yanlış görebilir miyim?