get_the_author_aim [ WordPress Function ]
get_the_author_aim ( No parameters )
| See: | |
| Returns: |
|
| Defined at: |
|
Benzer Fonksiyonlar: get_the_author_yim, get_the_author_id, get_the_author_email, get_the_author_icq, get_the_author_msn
Retrieve the AIM address of the author of the current post.
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- <?php function get_the_author($deprecated = '') { global ...
... return $authordata->icq; } function the_author_icq() { echo get_the_author_icq( ); } function get_the_author_aim() { global $authordata; return str_replace(' ', '+' ...
core.svn.wordpress.org - <?php /** * Author Template functions for use in themes ...
function get_the_author_aim() { global $authordata; return str_replace(' ', '+', ... @ since 0.71 * @see get_the_author_aim() */ function the_author_aim() { echo ...
core.svn.wordpress.org - <?php /** * Author Template functions for use in themes. * * These ...
function get_the_author_aim() { global $authordata; return str_replace(' ', '+', $ authordata->aim); } /** * Display the AIM name of the author of the current post.
core.svn.wordpress.org - authordata « Abhijit Nadgouda @ iface
Mar 17, 2006... get_the_author_icq() returns the author's ICQ ID. get_the_author_aim() returns the author's AIM ID. get_the_author_yim() returns the author's ...
iface.wordpress.com