WP Loop (tag)
| get_the_author() | Gets the name (display_name) of the post author. Used inside the WordPress loop. |
| get_the_author_link() | Returns a link (A tag) to the author's website. The anchor of the link will be the author's name. |
| get_the_content() | Gets the content of the current post. Must be used inside the WordPress loop. |
| get_the_excerpt() | Retrieves the excerpt of current or defined post. By default, should be used in WordPress Loop. |
| get_the_ID() | Retrieve the ID of the current post in the WordPress Loop. Can be used only inside the loop. |
| get_the_tag_list() | Gets the HTML string of tags for the current post. The name of each tag will be a link to the archive of posts with that tag. Used in a loop. |
| get_the_tags() | Retrieve an array of post tags. Each array element is a WP_Term object. Can be used within The Loop. |
| setup_postdata() | Sets up all urgent data of the post (except global $post variable). |
| the_author() | Display the name of the author of the current post. |
| the_content() | Display the post content. It is template tag and must be used inside the loop. |
| the_date() | Displays or Retrieve the date of the current post was written. Works with a group of posts (published on the same day). |
| the_excerpt() | Displays the excerpt (quote) of the post, with [...] at the end (but this is not a link to reading the full material). |
| the_ID() | Display the ID of the current post in the WordPress Loop. |
| the_permalink() | Displays link (URL) to the post that is currently being processed in the Loop. |
| the_post() | Sets the next post to the global |
| the_tags() | Retrieve the tags links for a post. |
| the_time() | Display the time (date) at which the post was written in the specified format. |