
WordPress - Metronet Profile Picture plugin
By: a guest on
Dec 29th, 2012 | syntax:
PHP | size: 0.25 KB | hits: 107 | expires: Never
<?php
//Assuming $post is in scope
if (function_exists ( 'mt_profile_img' ) ) {
$author_id=$post->post_author;
mt_profile_img( $author_id, array(
'size' => 'thumbnail',
'attr' => array( 'alt' => 'Alternative Text' ),
'echo' => true )
);
}
?>