My site is http://www.wearegraftedin.com
How do I remove "by admin" at the top of each post indicating who posted it? I just want the date there.
My site is http://www.wearegraftedin.com
How do I remove "by admin" at the top of each post indicating who posted it? I just want the date there.
For this you need to change your functions.php
Replace your twentyten_posted_on function with this function
function twentyten_posted_on() {
printf( __( '<span class="%1$s">Posted on</span> %2$s ', 'twentyten' ),
'meta-prep meta-prep-author',
sprintf( '<span class="entry-date">%3$s</span>',
get_permalink(),
esc_attr( get_the_time() ),
get_the_date()
)
);
}
This topic has been closed to new replies.