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