This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
Astra_Cache_Base::asset_type()
Get the archive title.
Description
Return
($title) Returns the archive title.
Source
File: classes/cache/class-astra-cache-base.php
private function asset_type() { $title = 'post'; if ( is_category() ) { $title = 'category'; } elseif ( is_tag() ) { $title = 'tag'; } elseif ( is_author() ) { $title = 'author'; } elseif ( is_year() ) { $title = 'year-' . get_query_var( 'year' ); } elseif ( is_month() ) { $title = 'month-' . get_query_var( 'monthnum' ); } elseif ( is_day() ) { $title = 'day-' . get_query_var( 'day' ); } elseif ( is_tax( 'post_format' ) ) { if ( is_tax( 'post_format', 'post-format-aside' ) ) { $title = 'asides'; } elseif ( is_tax( 'post_format', 'post-format-gallery' ) ) { $title = 'galleries'; } elseif ( is_tax( 'post_format', 'post-format-image' ) ) { $title = 'images'; } elseif ( is_tax( 'post_format', 'post-format-video' ) ) { $title = 'videos'; } elseif ( is_tax( 'post_format', 'post-format-quote' ) ) { $title = 'quotes'; } elseif ( is_tax( 'post_format', 'post-format-link' ) ) { $title = 'links'; } elseif ( is_tax( 'post_format', 'post-format-status' ) ) { $title = 'statuses'; } elseif ( is_tax( 'post_format', 'post-format-audio' ) ) { $title = 'audio'; } elseif ( is_tax( 'post_format', 'post-format-chat' ) ) { $title = 'chats'; } } elseif ( is_post_type_archive() ) { $title = 'archives'; } elseif ( is_tax() ) { $tax = get_taxonomy( get_queried_object()->taxonomy ); $title = sanitize_key( $tax->name ); } if ( is_search() ) { $title = 'search'; } if ( is_404() ) { $title = '404'; } if ( is_front_page() ) { $title = 'post'; } if ( is_home() ) { $title = 'home'; } return apply_filters( 'astra_cache_asset_type', $title ); }
Expand full source code Collapse full source code View on Trac
Changelog
Version | Description |
---|---|
2.1.0 | Introduced. |