wp-includes/general-template.php
Lines:
1 to 100 of 212
<?php /** * General template tags that can go anywhere in a template. * * @package WordPress * @subpackage Template */ /* function get_header() – Load header template. */ /* function get_footer() – Load footer template. */ /* function get_sidebar() – Load sidebar template. */ /* function get_template_part() – Loads a template part into a template. */ /* function get_search_form() – Display search form. */ /* function wp_loginout() – Display the Log In/Out link. */ /* function wp_logout_url() – Retrieves the logout URL. */ /* function wp_login_url() – Retrieves the login URL. */ /* function wp_registration_url() – Returns the URL that allows the user to register on the site. */ /* function wp_login_form() – Provides a simple login form for use anywhere within WordPress. */ /* function wp_lostpassword_url() – Returns the URL that allows the user to retrieve the lost password */ /* function wp_register() – Display the Registration or Admin link. */ /* function wp_meta() – Theme container function for the ‘wp_meta’ action. */ /* function bloginfo() – Displays information about the current site. */ /* function get_bloginfo() – Retrieves information about the current site. */ /* function get_site_icon_url() – Returns the Site Icon URL. */ /* function site_icon_url() – Displays the Site Icon URL. */ /* function has_site_icon() – Whether the site has a Site Icon. */ /* function has_custom_logo() – Determines whether the site has a custom logo. */ /* function get_custom_logo() – Returns a custom logo, linked to home unless the theme supports removing the link on the home page. */ /* function the_custom_logo() – Displays a custom logo, linked to home. */ /* function wp_get_document_title() – Returns document title for the current page. */ /* function _wp_render_title_tag() – Displays title tag with content. */ /* function wp_title() – Display or retrieve page title for all areas of blog. */ /* function single_post_title() – Display or retrieve page title for post. */ /* function post_type_archive_title() – Display or retrieve title for a post type archive. */ /* function single_cat_title() – Display or retrieve page title for category archive. */ /* function single_tag_title() – Display or retrieve page title for tag post archive. */ /* function single_term_title() – Display or retrieve page title for taxonomy term archive. */ /* function single_month_title() – Display or retrieve page title for post archive based on date. */ /* function the_archive_title() – Display the archive title based on the queried object. */ /* function get_the_archive_title() – Retrieve the archive title based on the queried object. */ /* function the_archive_description() – Display category, tag, term, or author description. */ /* function get_the_archive_description() – Retrieves the description for an author, post type, or term archive. */ /* function get_the_post_type_description() – Retrieves the description for a post type archive. */ /* function get_archives_link() – Retrieve archive link content based on predefined or custom code. */ /* function wp_get_archives() – Display archive links based on type and format. */ /* function calendar_week_mod() – Get number of days since the start of the week. */ /* function get_calendar() – Display calendar with days that have posts as links. */ /* function delete_get_calendar_cache() – Purge the cached results of get_calendar. */ /* function allowed_tags() – Display all of the allowed tags in HTML format with attributes. */ /***** Date/Time tags */ /* function the_date_xml() – Outputs the date in iso8601 format for xml files. */ /* function the_date() – Display or Retrieve the date the current post was written (once per date) */ /* function get_the_date() – Retrieve the date on which the post was written. */ /* function the_modified_date() – Display the date on which the post was last modified. */