Make WordPress Core


Ignore:
Timestamp:
10/07/2024 06:07:57 PM (22 months ago)
Author:
desrosj
Message:

Twenty Twenty-Five: Merge the latest improvements for Beta 2.

This merges the latest improvements to the Twenty Twenty-Five theme from GitHub into trunk for 6.7 beta 2.

A full list of changes can be found on GitHub: https://github.com/WordPress/twentytwentyfive/commits/trunk/?since=2024-10-01&until=2024-10-07.

Props poena, mukesh27, jonnywatersbb, cliffralessio, afercia, samtoohey93, codersantosh, carstenbach, gohelkunjan, ryelle, aaronrobertshaw, wildworks, yukinobu, audrasjb, mdviralsampat, hanneslsm, ddewan, greenshady, joedolson, areziaal, alaminfirdows, kartikmehta, cwhitmore.
Fixes #62180.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/footer.php

    r59146 r59191  
    4343                        <div class="wp-block-group">
    4444                                <!-- wp:navigation {"overlayMenu":"never","layout":{"type":"flex","orientation":"vertical"}} -->
    45                                         <!-- wp:navigation-link {"label":"Blog","url":"#"} /-->
     45                                        <!-- wp:navigation-link {"label":"<?php esc_html_e( 'Blog', 'twentytwentyfive' ); ?>","url":"#"} /-->
    4646
    47                                         <!-- wp:navigation-link {"label":"About","url":"#"} /-->
     47                                        <!-- wp:navigation-link {"label":"<?php esc_html_e( 'About', 'twentytwentyfive' ); ?>","url":"#"} /-->
    4848
    49                                         <!-- wp:navigation-link {"label":"FAQs","url":"#"} /-->
     49                                        <!-- wp:navigation-link {"label":"<?php esc_html_e( 'FAQs', 'twentytwentyfive' ); ?>","url":"#"} /-->
    5050
    51                                         <!-- wp:navigation-link {"label":"Authors","url":"#"} /-->
     51                                        <!-- wp:navigation-link {"label":"<?php esc_html_e( 'Authors', 'twentytwentyfive' ); ?>","url":"#"} /-->
    5252                                <!-- /wp:navigation -->
    5353
    5454                                <!-- wp:navigation {"overlayMenu":"never","layout":{"type":"flex","orientation":"vertical"}} -->
    55                                         <!-- wp:navigation-link {"label":"Events","url":"#"} /-->
     55                                        <!-- wp:navigation-link {"label":"<?php esc_html_e( 'Events', 'twentytwentyfive' ); ?>","url":"#"} /-->
    5656
    57                                         <!-- wp:navigation-link {"label":"Shop","url":"#"} /-->
     57                                        <!-- wp:navigation-link {"label":"<?php esc_html_e( 'Shop', 'twentytwentyfive' ); ?>","url":"#"} /-->
    5858
    59                                         <!-- wp:navigation-link {"label":"Patterns","url":"#"} /-->
     59                                        <!-- wp:navigation-link {"label":"<?php esc_html_e( 'Patterns', 'twentytwentyfive' ); ?>","url":"#"} /-->
    6060
    61                                         <!-- wp:navigation-link {"label":"Themes","url":"#"} /-->
     61                                        <!-- wp:navigation-link {"label":"<?php esc_html_e( 'Themes', 'twentytwentyfive' ); ?>","url":"#"} /-->
    6262                                <!-- /wp:navigation -->
    6363                        </div>
     
    7272                <!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"var:preset|spacing|20"}},"layout":{"type":"flex","flexWrap":"wrap","justifyContent":"space-between"}} -->
    7373                <div class="wp-block-group alignfull">
    74                         <!-- wp:paragraph { "metadata":{ "bindings":{ "content":{ "source":"twentytwentyfive/copyright" } } }, "fontSize":"small" } -->
     74                        <!-- wp:paragraph {"metadata":{"bindings":{"content":{"source":"twentytwentyfive/copyright"}}},"fontSize":"small"} -->
    7575                        <p class="has-small-font-size"></p>
    7676                        <!-- /wp:paragraph -->
     
    8080                                <?php
    8181                                printf(
    82                                         /* Translators: Designed with WordPress. %1$s: WordPress link. */
    83                                         esc_html__( 'Designed with %1$s', 'twentytwentyfive' ),
     82                                        /* Translators: Designed with WordPress. %s: WordPress link. */
     83                                        esc_html__( 'Designed with %s', 'twentytwentyfive' ),
    8484                                        '<a href="' . esc_url( __( 'https://wordpress.org', 'twentytwentyfive' ) ) . '" rel="nofollow">WordPress</a>'
    8585                                );
Note: See TracChangeset for help on using the changeset viewer.