tags:

views:

28

answers:

2

I created my own node-blog.tpl.php - I'm looking to modify this code:

<?php if ( $submitted ):?>
<span class="submitted"><?php echo $submitted;?></span>
<?php endif; ?>

I need to re-arrange the structure of the contents of the $submitted variable.

+1  A: 

Investigate http://api.drupal.org/api/function/theme_node_submitted/6
You can retheme it in template.php or remove print $submitted and print manually username and created as you want...

Nikit
i mean, $submitted variable in node assigned datas from this themer function...
Nikit
+1  A: 

There's also http://drupal.org/project/submitted_by

stephthegeek