Making WordPress.org

Changeset 13866

Timestamp:
06/27/2024 08:25:52 PM (6 weeks ago)
Author:
ryelle
Message:

Support Forums (2024): Update site title in local navigation.

The site title should be visible on scroll on the homepage, and always visible on interior pages.

See https://github.com/WordPress/wporg-mu-plugins/issues/535.

Location:
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/patterns
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/patterns/local-nav-home.php

    r13289 r13866  
    55        array(
    66            'title'   => __( 'Local Nav - Home', 'wporg-forums' ),
    7             'content' => '<!-- wp:wporg/local-navigation-bar {"backgroundColor":"charcoal-2","style":{"elements":{"link":{"color":{"text":"var:preset|color|white"},":hover":{"color":{"text":"var:preset|color|white"}}}}},"textColor":"white","fontSize":"small"} -->
     7            'content' => sprintf(
     8                '<!-- wp:wporg/local-navigation-bar {"className":"has-display-contents","backgroundColor":"charcoal-2","style":{"elements":{"link":{"color":{"text":"var:preset|color|white"},":hover":{"color":{"text":"var:preset|color|white"}}}}},"textColor":"white","fontSize":"small"} -->
    89
    9                     <!-- wp:html -->
    10                     <div style="height:calc(var(--wp--custom--body--small--typography--line-height) * var(--wp--preset--font-size--small));" aria-hidden="true"></div>
    11                     <!-- /wp:html -->
     10                    <!-- wp: -->
     11                    <>
     12                    <!-- /wp: -->
    1213
    1314                    <!-- wp:navigation {"icon":"menu","overlayBackgroundColor":"charcoal-2","overlayTextColor":"white","layout":{"type":"flex","orientation":"horizontal"},"fontSize":"small","menuSlug":"forums"} /-->
    1415
    15                 <!-- /wp:wporg/local-navigation-bar -->'
     16                <!-- /wp:wporg/local-navigation-bar -->',
     17                esc_html__( 'Forums', 'wporg-forums' ),
     18            ),
    1619        ),
    1720    );
    1821}
    19 
    20 ?>
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/patterns/local-nav.php

    r13289 r13866  
    99
    1010                    <!-- wp:paragraph {"fontSize":"small"} -->
    11                     <p class="wp-block-site-title has-small-font-size"><a href="%s">%s</a></p>
     11                    <p class="wp-block-site-title has-small-font-size"><a href="%s</a></p>
    1212                    <!-- /wp:paragraph -->
    1313
     
    1616                <!-- /wp:wporg/local-navigation-bar -->',
    1717                esc_url( home_url( '/forums/' ) ),
    18                 esc_html__( 'Forums', 'wporg-forums' ),
     18                esc_html__( 'Forums', 'wporg-forums' )
    1919            ),
    2020        )
    2121    );
    2222}
    23 
    24 ?>
Note: See TracChangeset for help on using the changeset viewer.