wpseek.com
A WordPress-centric search engine for devs and theme authors



get_the_author_icq › WordPress Function

Since1.5.0
Deprecated2.8.0
get_the_author_icq ( No parameters )
See:
Returns:
  • (string) The author's ICQ number.
Defined at:
Codex:

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



Source

function get_the_author_icq() {
	_deprecated_function( __FUNCTION__, '2.8.0', 'get_the_author_meta(\'icq\')' );
	return get_the_author_meta('icq');
}