Skip to content

Commit

Permalink
Add copy for Designer learning pathway template sections
Browse files Browse the repository at this point in the history
  • Loading branch information
adamwoodnz committed Dec 12, 2024
1 parent 813b159 commit c2fc92e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions wp-content/themes/pub/wporg-learn-2024/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,23 @@ function get_learning_pathway_level_content( $learning_pathway ) {
'see_all_aria_label' => 'See all advanced development concepts learning pathways',
),
),
'designer' => array(
'beginner' => array(
'title' => __( 'Beginner WordPress design', 'wporg-learn' ),
'description' => __( 'You’re new to designing for the web or want to learn how to use the Site Editor to customize a theme.', 'wporg-learn' ),
'see_all_aria_label' => 'See all beginner WordPress design learning pathways',
),
'intermediate' => array(
'title' => __( 'Intermediate WordPress design', 'wporg-learn' ),
'description' => __( 'You’re comfortable with web design best practices and using the Site Editor’s design tools.', 'wporg-learn' ),
'see_all_aria_label' => 'See all intermediate WordPress design learning pathways',
),
'advanced' => array(
'title' => __( 'Advanced WordPress design', 'wporg-learn' ),
'description' => __( 'You’re confident with customizing a Block theme, creating patterns, and integrating plugins.', 'wporg-learn' ),
'see_all_aria_label' => 'See all advanced WordPress design learning pathways',
),
),
);

return $content[ $learning_pathway ];
Expand Down

0 comments on commit c2fc92e

Please sign in to comment.