Changeset 13662
- Timestamp:
- 05/06/2024 03:38:13 AM (14 months ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-learn-2024
- Files:
-
- 4 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-learn-2024/functions.php
r13656 r13662 2 2 3 3 namespace WordPressdotorg\Theme\Learn_2024; 4 5 /** 6 * Admin. 7 */ 8 require __DIR__ . '/inc/admin.php'; 9 10 /** 11 * Capabilities. 12 */ 13 require __DIR__ . '/inc/capabilities.php'; 14 15 /** 16 * Taxonomies. 17 */ 18 require __DIR__ . '/inc/taxonomy.php'; 4 19 5 20 /** … … 22 37 filemtime( __DIR__ . '/build/style/style-index.css' ) 23 38 ); 39 40 // Preload the heading font(s). 41 if ( is_callable( 'global_fonts_preload' ) ) { 42 /* translators: Subsets can be any of cyrillic, cyrillic-ext, greek, greek-ext, vietnamese, latin, latin-ext. */ 43 $subsets = _x( 'Latin', 'Heading font subsets, comma separated', 'wporg-learn' ); 44 // All headings. 45 global_fonts_preload( 'EB Garamond, Inter', $subsets ); 46 } 24 47 } 25 48 … … 32 55 array( 33 56 'label' => __( 'User', 'wporg-learn' ), 34 'url' => '/learning-pathways/user/',57 'url' => '/learning-pathways/user/', 35 58 ), 36 59 array( 37 60 'label' => __( 'Designer', 'wporg-learn' ), 38 'url' => '/learning-pathways/designer/',61 'url' => '/learning-pathways/designer/', 39 62 ), 40 63 array( 41 64 'label' => __( 'Contributor', 'wporg-learn' ), 42 'url' => '/learning-pathways/contributor/',65 'url' => '/learning-pathways/contributor/', 43 66 ), 44 67 array( 45 68 'label' => __( 'Developer', 'wporg-learn' ), 46 'url' => '/learning-pathways/developer/',69 'url' => '/learning-pathways/developer/', 47 70 ), 48 71 ), -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-learn-2024/style.css
r13660 r13662 5 5 * Author URI: http://wordpress.org/ 6 6 * Description: A theme for learn.wordpress.org, built in 2024. 7 * Version: 1.0.0- 8ace1ca7 * Version: 1.0.0-bd61738 8 8 * License: GNU General Public License v2 or later 9 9 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.