Hello,
I have a wordpress blog and would like to make some modification to the title of each post. For now, the script for the title part of each post is the following:
Quote:
<h2 class="title"><?php the_title(); ?></h2>
<div id="stats" class="clearfloat"><span class="left"><?php _e('Submitted by','arthemia');?> <?php the_author_posts_link(); ?> <?php _e('on','arthemia');?> <?php the_time(get_option('date_format')); ?> – <?php the_time(); ?></span><span class="right"><a href="#respond"><?php comments_number(__('No Comment','arthemia'), __('One Comment','arthemia'), __('% Comments','arthemia') );?></a></span></div>
|
I want to make my title look a little like it is on
this website
So basically, I want it split in 3 part: one for the image (I will call it with a custom field), one for the title and one for a small description (will use a custom field to call the excerpt). Finally, I will not display the author, date and number of comment with the title anymore.
I know how to use the custom field. All I need is some help to create the table that will arrange things together.
Thank you for your help!!!