Uses
Uses | Description |
---|---|
wp-includes/capabilities.php: current_user_can() | Returns whether the current user has the specified capability. |
wp-includes/cache.php: wp_cache_get() | Retrieves the cache contents from the cache by key and group. |
wp-includes/cache.php: wp_cache_set() | Saves the data to the cache. |
wp-includes/pluggable.php: is_user_logged_in() | Determines whether the current visitor is a logged in user. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/user.php: get_current_user_id() | Get the current user’s ID |
wp-includes/post.php: _count_posts_cache_key() | Return the cache key for wp_count_posts() based on the passed arguments. |
wp-includes/post.php: wp_count_posts | Modify returned post counts by status for the current post type. |
wp-includes/post.php: post_type_exists() | Determines whether a post type is registered. |
wp-includes/post.php: get_post_stati() | Get a list of post statuses. |
wp-includes/post.php: get_post_type_object() | Retrieves a post type object by name. |
wp-includes/wp-db.php: wpdb::get_results() | Retrieves an entire SQL result set from the database (i.e., many rows). |
wp-includes/wp-db.php: wpdb::prepare() | Prepares a SQL query for safe execution. |