/**
 * Shortcode function for displaying the current post author YIM
 * Uses the get_the_author_yim() function
 * @link http://codex.wordpress.org/Template_Tags/the_author_yim
 *
 * @since 0.1
 */
function shortcode_the_author_yim()
{
    return get_the_author_yim();
}
Ejemplo n.º 2
0
/**
 * Display the Yahoo! IM name of the author of the current post.
 *
 * @link http://codex.wordpress.org/Template_Tags/the_author_yim
 * @since 0.71
 * @see get_the_author_yim()
 */
function the_author_yim()
{
    echo get_the_author_yim();
}