Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #55567, comment 74


Ignore:
Timestamp:
05/10/2022 03:14:14 PM (2 years ago)
Author:
hellofromTonya
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #55567, comment 74

    initial v1  
    11@kebbet is referring to this line of code:
    22
    3 ```php
     3{{{#!php
    44$post_title          = '“' . get_the_title() . '”';
    5 ```
     5}}}
    66
    77https://github.com/WordPress/wordpress-develop/blob/trunk/src/wp-includes/blocks/comments-title.php#L26
     
    99and converting it into:
    1010
    11 ```php
     11{{{#!php
    1212/* translators: %s: Post title. */
    1313$post_title          = __( '“%s”', get_the_title() );
    14 ```
     14}}}
    1515
    1616This change will to be done in Gutenberg as the block specific files are managed and published from there. @gziolo is there time before RC2?