Uses
Uses | Description |
---|---|
wp-includes/query.php: is_favicon() | Is the query for the favicon.ico file? |
wp-includes/class-wp.php: pre_handle_404 | Filters whether to short-circuit default header status handling. |
wp-includes/general-template.php: get_bloginfo() | Retrieves information about the current site. |
wp-includes/class-wp-query.php: WP_Query::set_404() | Sets the 404 property and saves whether query is feed. |
wp-includes/query.php: is_404() | Determines whether the query has resulted in a 404 (returns no results). |
wp-includes/query.php: is_robots() | Is the query for the robots.txt file? |
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_paged() | Determines whether the query is for a paged result and not for the first page. |
wp-includes/query.php: is_author() | Determines whether the query is for an existing author archive page. |
wp-includes/query.php: is_tag() | Determines whether the query is for an existing tag archive page. |
wp-includes/query.php: is_category() | Determines whether the query is for an existing category 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_home() | Determines whether the query is for the blog homepage. |
wp-includes/query.php: is_feed() | Determines whether the query is for a feed. |
wp-includes/query.php: get_query_var() | Retrieve variable in the WP_Query class. |
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/load.php: is_admin() | Determines whether the current request is for an administrative interface page. |
wp-includes/functions.php: status_header() | Set HTTP status header. |
wp-includes/functions.php: nocache_headers() | Set the headers to prevent caching for the different browsers. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/user.php: is_user_member_of_blog() | Find out whether a user is a member of a given blog. |
wp-includes/comment-template.php: pings_open() | Determines whether the current post is open for pings. |