Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_count_posts

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

This hook occurs 2 times in this file.

Line Code
2751      if ( false !== $counts ) {
2752           // We may have cached this before every status was registered.
2753           foreach ( get_post_stati() as $status ) {
2754                if ( ! isset( $counts->{$status} ) ) {
2755                     $counts->{$status} = 0;
2756                }
2757           }
2758
2759           /** This filter is documented in wp-includes/post.php */
2760           return apply_filters( 'wp_count_posts', $counts, $type, $perm );
2761      }
2762
2763      $query = "SELECT post_status, COUNT( * ) AS num_posts FROM {$wpdb->posts} WHERE post_type = %s";
2764
2765      if ( 'readable' === $perm && is_user_logged_in() ) {
2766           $post_type_object = get_post_type_object( $type );
2767           if ( ! current_user_can( $post_type_object->cap->read_private_posts ) ) {
2768                $query .= $wpdb->prepare(
2769                     " AND (post_status != 'private' OR ( post_author = %d AND post_status = 'private' ))",
 
Line Code
2789       *
2790       * @since 3.7.0
2791       *
2792       * @param object $counts An object containing the current post_type's post
2793       *                       counts by status.
2794       * @param string $type   Post type.
2795       * @param string $perm   The permission to determine if the posts are 'readable'
2796       *                       by the current user.
2797       */
2798      return apply_filters( 'wp_count_posts', $counts, $type, $perm );
2799 }
2800
2801 /**
2802  * Count number of attachments for the mime type(s).
2803  *
2804  * If you set the optional mime_type parameter, then an array will still be
2805  * returned, but will only have the item you are looking for. It does not give
2806  * you the number of attachments that are children of a post. You can get that
2807  * by counting the number of children that post has.