the_author_yim()
Deprecated since 2.8.0. It is no longer supported and may be removed in future releases. Use the_author_meta() instead.
Display the Yahoo! IM name of the author of the current post.
No Hooks.
Returns
null. Nothing (null).
Usage
the_author_yim();
Notes
- See: the_author_meta()
Changelog
| Since 0.71 | Introduced. |
| Deprecated since 2.8.0 | Use the_author_meta() |
the_author_yim() the author yim code WP 6.8.3
function the_author_yim() {
_deprecated_function( __FUNCTION__, '2.8.0', 'the_author_meta(\'yim\')' );
the_author_meta('yim');
}