Changeset 56287
- Timestamp:
- 07/24/2023 08:52:59 PM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/block-template-utils.php
r56230 r56287 128 128 'singular' => array( 129 129 'title' => _x( 'Single Entries', 'Template name' ), 130 'description' => __( 'Displays any single entry, such as a post or a page. This template will serve as a fallback when a more specific template (e.g. ,Single Post, Page, or Attachment) cannot be found.' ),130 'description' => __( 'Displays any single entry, such as a post or a page. This template will serve as a fallback when a more specific template (e.g. Single Post, Page, or Attachment) cannot be found.' ), 131 131 ), 132 132 'single' => array( … … 140 140 'archive' => array( 141 141 'title' => _x( 'All Archives', 'Template name' ), 142 'description' => __( 'Displays any archive, including posts by a single author, category, tag, taxonomy, custom post type, and date. This template will serve as a fallback when more specific templates (e.g. ,Category or Tag) cannot be found.' ),142 'description' => __( 'Displays any archive, including posts by a single author, category, tag, taxonomy, custom post type, and date. This template will serve as a fallback when more specific templates (e.g. Category or Tag) cannot be found.' ), 143 143 ), 144 144 'author' => array( 145 145 'title' => _x( 'Author Archives', 'Template name' ), 146 'description' => __( 'Displays a single author\'s post archive. This template will serve as a fallback when a more specific template (e.g. ,Author: Admin) cannot be found.' ),146 'description' => __( 'Displays a single author\'s post archive. This template will serve as a fallback when a more specific template (e.g. Author: Admin) cannot be found.' ), 147 147 ), 148 148 'category' => array( 149 149 'title' => _x( 'Category Archives', 'Template name' ), 150 'description' => __( 'Displays a post category archive. This template will serve as a fallback when a more specific template (e.g. ,Category: Recipes) cannot be found.' ),150 'description' => __( 'Displays a post category archive. This template will serve as a fallback when a more specific template (e.g. Category: Recipes) cannot be found.' ), 151 151 ), 152 152 'taxonomy' => array( 153 153 'title' => _x( 'Taxonomy', 'Template name' ), 154 'description' => __( 'Displays a custom taxonomy archive. Like categories and tags, taxonomies have terms which you use to classify things. For example: a taxonomy named "Art" can have multiple terms, such as "Modern" and "18th Century." This template will serve as a fallback when a more specific template (e.g ,Taxonomy: Art) cannot be found.' ),154 'description' => __( 'Displays a custom taxonomy archive. Like categories and tags, taxonomies have terms which you use to classify things. For example: a taxonomy named "Art" can have multiple terms, such as "Modern" and "18th Century." This template will serve as a fallback when a more specific template (e.g. Taxonomy: Art) cannot be found.' ), 155 155 ), 156 156 'date' => array( … … 160 160 'tag' => array( 161 161 'title' => _x( 'Tag Archives', 'Template name' ), 162 'description' => __( 'Displays a post tag archive. This template will serve as a fallback when a more specific template (e.g. ,Tag: Pizza) cannot be found.' ),162 'description' => __( 'Displays a post tag archive. This template will serve as a fallback when a more specific template (e.g. Tag: Pizza) cannot be found.' ), 163 163 ), 164 164 'attachment' => array(
Note: See TracChangeset
for help on using the changeset viewer.