wpseek.com
				A WordPress-centric search engine for devs and theme authors
			wp_get_theme_data_template_parts › WordPress Function
Since6.4.0
Deprecatedn/a
› wp_get_theme_data_template_parts ( No parameters )
| Returns: | 
 | 
| Defined at: | 
 | 
| Codex: | 
Returns the metadata for the template parts defined by the theme.
Source
function wp_get_theme_data_template_parts() {
	$cache_group    = 'theme_json';
	$cache_key      = 'wp_get_theme_data_template_parts';
	$can_use_cached = ! wp_is_development_mode( 'theme' );
	if ( $can_use_cached ) {
		$metadata = wp_cache_get( $cache_key, $cache_group );
		if ( false !== $metadata ) {
			return $metadata;
		}
	}
	$metadata = WP_Theme_JSON_Resolver::get_theme_data( array(), array( 'with_supports' => false ) )->get_template_parts();
	if ( $can_use_cached ) {
		wp_cache_set( $cache_key, $metadata, $cache_group );
	}
	return $metadata;
}