Parsed: 122887
<?php /** * WordPress Post Template Functions. * * Gets content for the current post in the loop. * * @package WordPress * @subpackage Template */ /* function the_ID() – Display the ID of the current item in the WordPress Loop. */ /* function get_the_ID() – Retrieve the ID of the current item in the WordPress Loop. */ /* function the_title() – Display or retrieve the current post title with optional markup. */ /* function the_title_attribute() – Sanitize the current title when retrieving or displaying. */ /* function get_the_title() – Retrieves the post title. */ /* function the_guid() – Displays the Post Global Unique Identifier (guid). */ /* function get_the_guid() – Retrieves the Post Global Unique Identifier (guid). */ /* function the_content() – Display the post content. */ /* function get_the_content() – Retrieve the post content. */ /* function the_excerpt() – Display the post excerpt. */ /* function get_the_excerpt() – Retrieves the post excerpt. */ /* function has_excerpt() – Determines whether the post has a custom excerpt. */ /* function post_class() – Displays the classes for the post container element. */ /* function get_post_class() – Retrieves an array of the class names for the post container element. */ /* function body_class() – Displays the class names for the body element. */ /* function get_body_class() – Retrieves an array of the class names for the body element. */ /* function post_password_required() – Whether post requires password and correct password has been provided. */ // // Page Template Functions for usage in Themes. // /* function wp_link_pages() – The formatted output of a list of pages. */ /* function _wp_link_page() – Helper function for wp_link_pages(). */ // // Post-meta: Custom per-post fields. // /* function post_custom() – Retrieve post custom meta data field. */ /* function the_meta() – Displays a list of post custom fields. */ // // Pages. // /* function wp_dropdown_pages() – Retrieves or displays a list of pages as a dropdown (select list). */ /* function wp_list_pages() – Retrieve or display a list of pages (or hierarchical post type items) in list (li) format. */ /* function wp_page_menu() – Displays or retrieves a list of pages with an optional home link. */ // // Page helpers. // /* function walk_page_tree() – Retrieves HTML list content for page list. */ /* function walk_page_dropdown_tree() – Retrieve HTML dropdown (select) content for page list. */ // // Attachments. // /* function the_attachment_link() – Displays an attachment page link using an image or icon. */ /* function wp_get_attachment_link() – Retrieves an attachment page link using an image or icon, if possible. */ /* function prepend_attachment() – Wrap attachment in paragraph tag before content. */ // // Misc. // /* function get_the_password_form() – Retrieve protected post password form content. */ /* function is_page_template() – Determines whether currently in a page template. */ /* function get_page_template_slug() – Get the specific template filename for a given post. */ /* function wp_post_revision_title() – Retrieves formatted date timestamp of a revision (linked to that revisions’s page). */ /* function wp_post_revision_title_expanded() – Retrieves formatted date timestamp of a revision (linked to that revisions’s page). */ /* function wp_list_post_revisions() – Displays a list of a post’s revisions. */ /* function get_post_parent() – Retrieves the parent post object for the given post. */ /* function has_post_parent() – Returns whether the given post has a parent post. */