Uses
Uses | Description |
---|---|
wp-includes/general-template.php: pre_get_document_title | Filters the document title before it is generated. |
wp-includes/general-template.php: document_title_separator | Filters the separator for the document title. |
wp-includes/general-template.php: document_title_parts | Filters the parts of the document title. |
wp-includes/l10n.php: __() | Retrieve the translation of $text. |
wp-includes/l10n.php: _x() | Retrieve translated string with gettext context. |
wp-includes/formatting.php: capital_P_dangit() | Forever eliminate “Wordpress” from the planet (or at least the little bit we can influence). |
wp-includes/formatting.php: esc_html() | Escaping for HTML blocks. |
wp-includes/formatting.php: convert_chars() | Converts lone & characters into |
wp-includes/formatting.php: wptexturize() | Replaces common plain text characters with formatted entities. |
wp-includes/general-template.php: get_search_query() | Retrieves the contents of the search WordPress query variable. |
wp-includes/general-template.php: get_the_date() | Retrieve the date on which the post was written. |
wp-includes/general-template.php: get_bloginfo() | Retrieves information about the current site. |
wp-includes/general-template.php: post_type_archive_title() | Display or retrieve title for a post type archive. |
wp-includes/general-template.php: single_term_title() | Display or retrieve page title for taxonomy term archive. |
wp-includes/general-template.php: single_post_title() | Display or retrieve page title for post. |
wp-includes/query.php: is_404() | Determines whether the query has resulted in a 404 (returns no results). |
wp-includes/query.php: is_search() | Determines whether the query is for a search. |
wp-includes/query.php: is_singular() | Determines whether the query is for an existing single post of any post type (post, attachment, page, custom post types). |
wp-includes/query.php: is_year() | Determines whether the query is for an existing year archive. |
wp-includes/query.php: is_front_page() | Determines whether the query is for the front page of the site. |
wp-includes/query.php: is_tax() | Determines whether the query is for an existing custom taxonomy archive page. |
wp-includes/query.php: is_home() | Determines whether the query is for the blog homepage. |
wp-includes/query.php: is_category() | Determines whether the query is for an existing category archive page. |
wp-includes/query.php: is_tag() | Determines whether the query is for an existing tag archive page. |
wp-includes/query.php: is_author() | Determines whether the query is for an existing author archive page. |
wp-includes/query.php: is_month() | Determines whether the query is for an existing month archive. |
wp-includes/query.php: is_day() | Determines whether the query is for an existing day archive. |
wp-includes/query.php: is_post_type_archive() | Determines whether the query is for an existing post type archive page. |
wp-includes/query.php: get_queried_object() | Retrieve the currently-queried object. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |