Parsed: 114252

<?php

/**
 * Author Template functions for use in themes.
 *
 * These functions must be used within the WordPress Loop.
 *
 * @link https://codex.wordpress.org/Author_Templates
 *
 * @package WordPress
 * @subpackage Template
 */

/* function get_the_author() – Retrieve the author of the current post. */

/* function the_author() – Display the name of the author of the current post. */

/* function get_the_modified_author() – Retrieves the author who last edited the current post. */

/* function the_modified_author() – Display the name of the author who last edited the current post,
if the author’s ID is available. */

/* function get_the_author_meta() – Retrieves the requested data of the author of the current post. */

/* function the_author_meta() – Outputs the field from the user’s DB object. Defaults to current post’s author. */

/* function get_the_author_link() – Retrieves either author’s link or author’s name. */

/* function the_author_link() – Display either author’s link or author’s name. */

/* function get_the_author_posts() – Retrieve the number of posts by the author of the current post. */

/* function the_author_posts() – Display the number of posts by the author of the current post. */

/* function get_the_author_posts_link() – Retrieves an HTML link to the author page of the current post’s author. */

/* function the_author_posts_link() – Displays an HTML link to the author page of the current post’s author. */

/* function get_author_posts_url() – Retrieves the URL to the author page for the user with the ID provided. */

/* function wp_list_authors() – Lists all the authors of the site, with several options available. */

/* function is_multi_author() – Determines whether this site has more than one author. */

/* function __clear_multi_author_cache() – Helper function to clear the cache for number of authors. */