get_the_author_icq
Retrieve the ICQ number of the author of the current post.
Description
(string) get_the_author_icq();
Returns (string)
The author's ICQ number.
Usage
if ( !function_exists( 'get_the_author_icq' ) ) { require_once ABSPATH . WPINC . '/deprecated.php'; } // NOTICE! Understand what this does before running. $result = get_the_author_icq();
Defined (1)
The function is defined in the following location(s).
- /wp-includes/deprecated.php
- function get_the_author_icq() {
- _deprecated_function( __FUNCTION__, '2.8.0', 'get_the_author_meta(\'icq\')' );
- return get_the_author_meta('icq');
- }