WP_Theme_JSON::get_template_parts
Returns the template part data of active theme.
Method of the class: WP_Theme_JSON{}
No Hooks.
Returns
Array.
Usage
$WP_Theme_JSON = new WP_Theme_JSON(); $WP_Theme_JSON->get_template_parts();
Changelog
| Since 5.9.0 | Introduced. |
WP_Theme_JSON::get_template_parts() WP Theme JSON::get template parts code WP 7.0
public function get_template_parts() {
$template_parts = array();
if ( ! isset( $this->theme_json['templateParts'] ) || ! is_array( $this->theme_json['templateParts'] ) ) {
return $template_parts;
}
foreach ( $this->theme_json['templateParts'] as $item ) {
if ( isset( $item['name'] ) ) {
$template_parts[ $item['name'] ] = array(
'title' => $item['title'] ?? '',
'area' => $item['area'] ?? '',
);
}
}
return $template_parts;
}