Author name

Latest Reply from IAAMRadio at 2013-01-28 05:40:07 Solution
Hi,

Can you please tell me how to display the Author name to new posts? I can't find it anywhere.
Hi!
Please find code
<?php if (!is_page()) {?><p class='post-meta'>
<span class='post-date'><?php echo get_the_date(); ?></span>
Posted in &nbsp;<?php the_category(', '); ?>
<?php if(comments_open( get_the_ID() )) {
?> | Comments: <?php comments_popup_link( 0, 1, '%' ); ?><?php
}
edit_post_link( $SMTheme->_( 'edit' ), ' | <span class="edit-link">', '</span>' );
?>
</p><?php } ?>

in the file theloop.php and replace it with
<?php if (!is_page()) {?><p class='post-meta'>
<span class='post-date'><?php echo get_the_date(); ?></span>
Posted in &nbsp;<?php the_category(', '); ?>
<?php if(comments_open( get_the_ID() )) {
?> | Comments: <?php comments_popup_link( 0, 1, '%' ); ?><?php
}
edit_post_link( $SMTheme->_( 'edit' ), ' | <span class="edit-link">', '</span>' );
?>
&nbsp;<span>Author: <?php the_author(); ?></span>
</p><?php } ?>
Works like a deam! Thanks! :)
Or you could use a valid wordpress plugin, there are a couple out that work well, just go to your plugin option in the dashboard and click add new and search for what you are looking for...

Leave a reply

Add codeAdd image