get_private_posts_cap_sql()
Retrieves the private post SQL based on capability.
This function provides a standardized way to appropriately select on the post_status of a post type. The function will return a piece of SQL code that can be added to a WHERE clause; this SQL is constructed to allow all published posts, and all private posts to which the user has access.
Хуков нет.
Возвращает
Строку
. SQL code that can be added to a where clause.
Использование
get_private_posts_cap_sql( $post_type );
- $post_type(строка|массив) (обязательный)
- Single post type or an array of post types. Currently only supports 'post' or 'page'.
Список изменений
С версии 2.2.0 | Введена. |
С версии 4.3.0 | Added the ability to pass an array to $post_type. |
Код get_private_posts_cap_sql() get private posts cap sql WP 6.7.1
function get_private_posts_cap_sql( $post_type ) { return get_posts_by_author_sql( $post_type, false ); }