Changeset 13775 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-learn-2024/functions.php
- Timestamp:
- 06/04/2024 11:39:41 PM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-learn-2024/functions.php
r13761 r13775 6 6 7 7 // Block files 8 require_once __DIR__ . '/src/learning-pathway-cards/block.php'; 9 require_once __DIR__ . '/src/upcoming-online-workshops/block.php'; 8 require_once __DIR__ . '/src/learning-pathway-cards/index.php'; 9 require_once __DIR__ . '/src/search-results-context/index.php'; 10 require_once __DIR__ . '/src/upcoming-online-workshops/index.php'; 10 11 11 12 /** … … 155 156 'developer' => array( 156 157 'beginner' => array( 157 'title' => __( '[TBD Beginner developer title]', 'wporg-learn' ),158 'description' => __( '[TBD Beginner developer description]', 'wporg-learn' ),159 ), 160 'intermediate' => array( 161 'title' => __( '[TBD Intermediate developer title]', 'wporg-learn' ),162 'description' => __( '[TBD Intermediate developer description]', 'wporg-learn' ),163 ), 164 'advanced' => array( 165 'title' => __( '[TBD Advanced developer title]', 'wporg-learn' ),166 'description' => __( '[TBD Advanced developer description]', 'wporg-learn' ),158 'title' => '[TBD Beginner developer title]', 159 'description' => '[TBD Beginner developer description]', 160 ), 161 'intermediate' => array( 162 'title' => '[TBD Intermediate developer title]', 163 'description' => '[TBD Intermediate developer description]', 164 ), 165 'advanced' => array( 166 'title' => '[TBD Advanced developer title]', 167 'description' => '[TBD Advanced developer description]', 167 168 ), 168 169 ), 169 170 'designer' => array( 170 171 'beginner' => array( 171 'title' => __( 'Begin exploring WordPress', 'wporg-learn' ),172 'description' => __( 'Discover the design potential of WordPress.', 'wporg-learn' ),173 ), 174 'intermediate' => array( 175 'title' => __( 'Customize your site', 'wporg-learn' ),176 'description' => __( 'Personalize and own all the details of your WordPress site.', 'wporg-learn' ),177 ), 178 'advanced' => array( 179 'title' => __( 'Elevate your site to stunning levels', 'wporg-learn' ),180 'description' => __( 'For advanced users that are familiar with code.', 'wporg-learn' ),172 'title' => 'Begin exploring WordPress', 173 'description' => 'Discover the design potential of WordPress.', 174 ), 175 'intermediate' => array( 176 'title' => 'Customize your site', 177 'description' => 'Personalize and own all the details of your WordPress site.', 178 ), 179 'advanced' => array( 180 'title' => 'Elevate your site to stunning levels', 181 'description' => 'For advanced users that are familiar with code.', 181 182 ), 182 183 ), 183 184 'user' => array( 184 185 'beginner' => array( 185 'title' => __( '[TBD Beginner user title]', 'wporg-learn' ),186 'description' => __( '[TBD Beginner user description]', 'wporg-learn' ),187 ), 188 'intermediate' => array( 189 'title' => __( '[TBD Intermediate user title]', 'wporg-learn' ),190 'description' => __( '[TBD Intermediate user description]', 'wporg-learn' ),191 ), 192 'advanced' => array( 193 'title' => __( '[TBD Advanced user title]', 'wporg-learn' ),194 'description' => __( '[TBD Advanced user description]', 'wporg-learn' ),186 'title' => '[TBD Beginner user title]', 187 'description' => '[TBD Beginner user description]', 188 ), 189 'intermediate' => array( 190 'title' => '[TBD Intermediate user title]', 191 'description' => '[TBD Intermediate user description]', 192 ), 193 'advanced' => array( 194 'title' => '[TBD Advanced user title]', 195 'description' => '[TBD Advanced user description]', 195 196 ), 196 197 ), 197 198 'contributor' => array( 198 199 'beginner' => array( 199 'title' => __( '[TBD Beginner contributor title]', 'wporg-learn' ),200 'description' => __( '[TBD Beginner contributor description]', 'wporg-learn' ),201 ), 202 'intermediate' => array( 203 'title' => __( '[TBD Intermediate contributor title]', 'wporg-learn' ),204 'description' => __( '[TBD Intermediate contributor description]', 'wporg-learn' ),205 ), 206 'advanced' => array( 207 'title' => __( '[TBD Advanced contributor title]', 'wporg-learn' ),208 'description' => __( '[TBD Advanced contributor description]', 'wporg-learn' ),200 'title' => '[TBD Beginner contributor title]', 201 'description' => '[TBD Beginner contributor description]', 202 ), 203 'intermediate' => array( 204 'title' => '[TBD Intermediate contributor title]', 205 'description' => '[TBD Intermediate contributor description]', 206 ), 207 'advanced' => array( 208 'title' => '[TBD Advanced contributor title]', 209 'description' => '[TBD Advanced contributor description]', 209 210 ), 210 211 ),
Note: See TracChangeset
for help on using the changeset viewer.