HI All,
Could you please anyone help me to solve the same issue, I already updated as above, but still the same issue.
Really appreciate the help.
—————————————————
function twentyten_posted_on() {
printf( __( ‘<span class=”%1$s”>Posted on</span> %2$s <span class=”meta-sep”>by</span> %3$s’, ‘twentyten’ ),
‘meta-prep meta-prep-author’,
sprintf( ‘<span class=”entry-date updated”>%3$s</span>‘,
get_permalink(),
esc_attr( get_the_time() ),
get_the_date()
),
sprintf( ‘<span class=”author vcard”>%3$s</span>’,
get_author_posts_url( get_the_author_meta( ‘ID’ ) ),
esc_attr( sprintf( __( ‘View all posts by %s’, ‘twentyten’ ), get_the_author() ) ),
get_the_author()
)
);
}
endif;
if ( ! function_exists( ‘twentyten_posted_in’ ) ) :
—————————————————————