Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: pub_priv_sql_capability

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

Line Code
4157 function get_posts_by_author_sql( $post_type, $full = true, $post_author = null ) {
4158      global $user_ID, $wpdb;
4159
4160      // Private posts
4161      $post_type_obj = get_post_type_object( $post_type );
4162      if ( ! $post_type_obj )
4163           return $full ? 'WHERE 1 = 0' : ' 1 = 0 ';
4164
4165      // This hook is deprecated. Why you'd want to use it, I dunno.
4166      if ( ! $cap = apply_filters( 'pub_priv_sql_capability', '' ) )
4167           $cap = $post_type_obj->cap->read_private_posts;
4168
4169      if ( $full ) {
4170           if ( null === $post_author ) {
4171                $sql = $wpdb->prepare( 'WHERE post_type = %s AND ', $post_type );
4172           } else {
4173                $sql = $wpdb->prepare( 'WHERE post_author = %d AND post_type = %s AND ', $post_author, $post_type );
4174           }
4175      } else {