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 |
|---|---|
| 3025 | if ( false !== $counts ) { |
| 3026 | // We may have cached this before every status was registered. |
| 3027 | foreach ( get_post_stati() as $status ) { |
| 3028 | if ( ! isset( $counts->{$status} ) ) { |
| 3029 | $counts->{$status} = 0; |
| 3030 | } |
| 3031 | } |
| 3032 | |
| 3033 | /** This filter is documented in wp-includes/post.php */ |
| 3034 | return apply_filters( 'wp_count_posts', $counts, $type, $perm ); |
| 3035 | } |
| 3036 | |
| 3037 | $query = "SELECT post_status, COUNT( * ) AS num_posts FROM {$wpdb->posts} WHERE post_type = %s"; |
| 3038 | |
| 3039 | if ( 'readable' === $perm && is_user_logged_in() ) { |
| 3040 | $post_type_object = get_post_type_object( $type ); |
| 3041 | if ( ! current_user_can( $post_type_object->cap->read_private_posts ) ) { |
| 3042 | $query .= $wpdb->prepare( |
| 3043 | " AND (post_status != 'private' OR ( post_author = %d AND post_status = 'private' ))", |
| Line | Code |
| 3063 | * |
| 3064 | * @since 3.7.0 |
| 3065 | * |
| 3066 | * @param stdClass $counts An object containing the current post_type's post |
| 3067 | * counts by status. |
| 3068 | * @param string $type Post type. |
| 3069 | * @param string $perm The permission to determine if the posts are 'readable' |
| 3070 | * by the current user. |
| 3071 | */ |
| 3072 | return apply_filters( 'wp_count_posts', $counts, $type, $perm ); |
| 3073 | } |
| 3074 | |
| 3075 | /** |
| 3076 | * Counts number of attachments for the mime type(s). |
| 3077 | * |
| 3078 | * If you set the optional mime_type parameter, then an array will still be |
| 3079 | * returned, but will only have the item you are looking for. It does not give |
| 3080 | * you the number of attachments that are children of a post. You can get that |
| 3081 | * by counting the number of children that post has. |