Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: First Plugin Attempt


thomasklaiber
Member

@thomasklaiber

I think you should use a function like:

function apply_author_title_image( $r ) {

$r .= '<br>Your Image';

return $r;

}

add_filter('post_author_title', 'apply_author_title_image');

Skip to toolbar