Uses
Uses | Description |
---|---|
wp-includes/query.php: is_privacy_policy() | Determines whether the query is for the Privacy Policy page. |
wp-includes/general-template.php: has_custom_logo() | Determines whether the site has a custom logo. |
wp-includes/theme.php: current_theme_supports() | Checks a theme’s support for a given feature. |
wp-includes/theme.php: get_background_color() | Retrieves value for custom background color. |
wp-includes/theme.php: get_theme_support() | Gets the theme support arguments passed when registering that support. |
wp-includes/theme.php: get_background_image() | Retrieves background image for custom background. |
wp-includes/formatting.php: sanitize_html_class() | Sanitizes an HTML classname to ensure it only contains valid characters. |
wp-includes/pluggable.php: is_user_logged_in() | Determines whether the current visitor is a logged in user. |
wp-includes/class-wp-query.php: WP_Query::get_queried_object_id() | Retrieve ID of the current queried object. |
wp-includes/class-wp-query.php: WP_Query::get_queried_object() | Retrieve queried object. |
wp-includes/class-wp-query.php: WP_Query::get() | Retrieve query variable. |
wp-includes/query.php: is_search() | Determines whether the query is for a search. |
wp-includes/query.php: is_404() | Determines whether the query has resulted in a 404 (returns no results). |
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_single() | Determines whether the query is for an existing single post. |
wp-includes/query.php: is_front_page() | Determines whether the query is for the front page of the site. |
wp-includes/query.php: is_home() | Determines whether the query is for the blog homepage. |
wp-includes/query.php: is_date() | Determines whether the query is for an existing date archive. |
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_attachment() | Determines whether the query is for an existing attachment page. |
wp-includes/query.php: is_page() | Determines whether the query is for an existing single page. |
wp-includes/query.php: is_author() | Determines whether the query is for an existing author archive page. |
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_archive() | Determines whether the query is for an existing 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/l10n.php: is_rtl() | Determines whether the current locale is right-to-left (RTL). |
wp-includes/admin-bar.php: is_admin_bar_showing() | Determines whether the admin bar should be showing. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/post-template.php: is_page_template() | Determines whether currently in a page template. |
wp-includes/post-template.php: get_page_template_slug() | Get the specific template filename for a given post. |
wp-includes/post-template.php: body_class | Filters the list of CSS body class names for the current post or page. |
wp-includes/post.php: get_pages() | Retrieve a list of pages (or hierarchical post type items). |
wp-includes/post.php: post_type_supports() | Check a post type’s support for a given feature. |
wp-includes/post.php: get_post_mime_type() | Retrieve the mime type of an attachment based on the ID. |
wp-includes/post.php: get_post() | Retrieves post data given a post ID or post object. |
wp-includes/post-formats.php: get_post_format() | Retrieve the format slug for a post |
wp-includes/load.php: is_wp_error() | Check whether variable is a WordPress Error. |