WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 2 times in this file.
| Line | Code |
|---|---|
| 2241 | |
| 2242 | if ( ! post_type_exists( $type ) ) |
| 2243 | return new stdClass; |
| 2244 | |
| 2245 | $cache_key = _count_posts_cache_key( $type, $perm ); |
| 2246 | |
| 2247 | $counts = wp_cache_get( $cache_key, 'counts' ); |
| 2248 | if ( false !== $counts ) { |
| 2249 | /** This filter is documented in wp-includes/post.php */ |
| 2250 | return apply_filters( 'wp_count_posts', $counts, $type, $perm ); |
| 2251 | } |
| 2252 | |
| 2253 | $query = "SELECT post_status, COUNT( * ) AS num_posts FROM {$wpdb->posts} WHERE post_type = %s"; |
| 2254 | if ( 'readable' == $perm && is_user_logged_in() ) { |
| 2255 | $post_type_object = get_post_type_object($type); |
| 2256 | if ( ! current_user_can( $post_type_object->cap->read_private_posts ) ) { |
| 2257 | $query .= $wpdb->prepare( " AND (post_status != 'private' OR ( post_author = %d AND post_status = 'private' ))", |
| 2258 | get_current_user_id() |
| 2259 | ); |
| Line | Code |
| 2276 | * |
| 2277 | * @since 3.7.0 |
| 2278 | * |
| 2279 | * @param object $counts An object containing the current post_type's post |
| 2280 | * counts by status. |
| 2281 | * @param string $type Post type. |
| 2282 | * @param string $perm The permission to determine if the posts are 'readable' |
| 2283 | * by the current user. |
| 2284 | */ |
| 2285 | return apply_filters( 'wp_count_posts', $counts, $type, $perm ); |
| 2286 | } |
| 2287 | |
| 2288 | /** |
| 2289 | * Count number of attachments for the mime type(s). |
| 2290 | * |
| 2291 | * If you set the optional mime_type parameter, then an array will still be |
| 2292 | * returned, but will only have the item you are looking for. It does not give |
| 2293 | * you the number of attachments that are children of a post. You can get that |
| 2294 | * by counting the number of children that post has. |