Instead of saying "By author" I would like it to say "This post created by author"
Added this to my functions.php file:
=================
function my_postmeta_authorlink() {
global $authordata;
$authorlink = '<span class="meta-prep meta-prep-author">' . __('This post created by ', 'thematic') . '</span>';
$authorlink .= '<span class="author vcard">'. '<a class="url fn n" href="';
$authorlink .= get_author_posts_url($authordata->ID, $authordata->user_nicename);
$authorlink .= '" title="' . __('View all posts by ', 'thematic') . get_the_author() . '">';
$authorlink .= get_the_author();
$authorlink .= '</span>';
} // end my_postheader_postmeta
add_filter('thematic_postmeta_authorlink','my_postmeta_authorlink');
=================
Doesn't seem to change. Any tips? Thanks!