the_author_icq()WP 0.71

Deprecated from version 2.8.0. It is no longer supported and can be removed in future releases. Use the_author_meta() instead.

Display the ICQ number of the author of the current post.

No Hooks.

Return

null. Nothing (null).

Usage

the_author_icq();

Notes

Changelog

Since 0.71 Introduced.
Deprecated since 2.8.0 Use the_author_meta()

the_author_icq() code WP 6.4.3

function the_author_icq() {
	_deprecated_function( __FUNCTION__, '2.8.0', 'the_author_meta(\'icq\')' );
	the_author_meta('icq');
}