Uses
Uses | Description |
---|---|
wp-includes/l10n.php: _x() | Retrieve translated string with gettext context. |
wp-includes/l10n.php: __() | Retrieve the translation of $text. |
wp-includes/formatting.php: esc_attr() | Escaping for HTML attributes. |
wp-includes/formatting.php: esc_url() | Checks and cleans a URL. |
wp-includes/general-template.php: get_search_query() | Retrieves the contents of the search WordPress query variable. |
wp-includes/general-template.php: get_bloginfo() | Retrieves information about the current site. |
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_search() | Determines whether the query is for a search. |
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_tax() | Determines whether the query is for an existing custom taxonomy archive page. |
wp-includes/query.php: is_author() | Determines whether the query is for an existing author archive page. |
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_query_var() | Retrieve variable in the WP_Query class. |
wp-includes/query.php: get_queried_object() | Retrieve the currently-queried object. |
wp-includes/functions.php: wp_parse_args() | Merge user defined arguments into defaults array. |
wp-includes/taxonomy.php: get_taxonomy() | Retrieves the taxonomy object of $taxonomy. |
wp-includes/link-template.php: get_post_type_archive_feed_link() | Retrieves the permalink for a post type archive feed. |
wp-includes/link-template.php: get_tag_feed_link() | Retrieves the permalink for a tag feed. |
wp-includes/link-template.php: get_term_feed_link() | Retrieves the feed link for a term. |
wp-includes/link-template.php: get_search_feed_link() | Retrieves the permalink for the search results feed. |
wp-includes/link-template.php: get_post_comments_feed_link() | Retrieves the permalink for the post comments feed. |
wp-includes/link-template.php: get_category_feed_link() | Retrieves the feed link for a category. |
wp-includes/link-template.php: get_author_feed_link() | Retrieves the feed link for a given author. |
wp-includes/feed.php: feed_content_type() | Return the content type for specified feed type. |
wp-includes/post-template.php: the_title_attribute() | Sanitize the current title when retrieving or displaying. |
wp-includes/post.php: get_post() | Retrieves post data given a post ID or post object. |
wp-includes/post.php: get_post_type_object() | Retrieves a post type object by name. |
wp-includes/author-template.php: get_the_author_meta() | Retrieves the requested data of the author of the current post. |
wp-includes/comment-template.php: comments_open() | Determines whether the current post is open for comments. |
wp-includes/comment-template.php: pings_open() | Determines whether the current post is open for pings. |