wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
_count_posts_cache_key is private and should not be used in themes or plugins directly.
_count_posts_cache_key › WordPress Function
Seit3.9.0
Veraltetn/v
› _count_posts_cache_key ( $type = 'post', $perm = '' )
Zugriff: |
|
Parameter: (2) |
|
Gibt zurück: |
|
Definiert in: |
|
Codex: |
Returns the cache key for wp_count_posts() based on the passed arguments.
Ähnliche Funktionen: clean_post_cache, wp_count_posts, update_post_cache, update_post_caches, get_next_posts_page_link
Quellcode
function _count_posts_cache_key( $type = 'post', $perm = '' ) { $cache_key = 'posts-' . $type; if ( 'readable' === $perm && is_user_logged_in() ) { $post_type_object = get_post_type_object( $type ); if ( $post_type_object && ! current_user_can( $post_type_object->cap->read_private_posts ) ) { $cache_key .= '_' . $perm . '_' . get_current_user_id(); } } return $cache_key; }