2016-05-30 25 views

Antwort

0

Für Drupal 7 können Sie als Beispiel auf /modules/node/node.tpl.php verweisen. Hier ist ein Code-Schnipsel in der Datei:

<div class="content"<?php print $content_attributes; ?>> 
    <?php 
    // We hide the comments and links now so that we can render them later. 
    hide($content['comments']); 
    hide($content['links']); 
    print render($content); 
    ?> 
</div> 

<?php print render($content['links']); ?> 

<?php print render($content['comments']); ?> 

Ich bin nicht sicher, ob es einen Unterschied in Drupal 6, aber man kann versuchen.