Changeset 7539 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/gutenberg/gutenfront-content.php
- Timestamp:
- 07/30/2018 11:28:13 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/gutenberg/gutenfront-content.php
r7538 r7539 1 1 <?php 2 3 $localised_domain = parse_url( home_url('/'), PHP_URL_HOST ); 4 2 5 $title = __( 'Say Hello to the New Editor', 'gutenbergtheme' ); 3 6 … … 23 26 24 27 $content .= '<!-- wp:button {"align":"center","backgroundColor":"dark-blue"} --> 25 <div class="wp-block-button aligncenter"><a class="wp-block-button__link has-background has-dark-blue-background-color" href=" /plugins/gutenberg/">' . __( "Download Gutenberg Today", 'gutenbergtheme' ) . '</a></div>28 <div class="wp-block-button aligncenter"><a class="wp-block-button__link has-background has-dark-blue-background-color" href="' . "https://{$localised_domain}/plugins/gutenberg/" . '">' . __( "Download Gutenberg Today", 'gutenbergtheme' ) . '</a></div> 26 29 <!-- /wp:button -->' . "\n\n"; 27 30 … … 31 34 /* translators: %s: The URL to the Clasic Editor plugin. */ 32 35 __( "Gutenberg is available as a plugin today, and will be included in version 5.0 of WordPress. The <a href='%s'>classic editor</a> will be available as a plugin if needed.", 'gutenbergtheme' ), 33 '/plugins/classic-editor/'36 "https://{$localised_domain}/plugins/classic-editor/" 34 37 ) . '</em></p> 35 38 <!-- /wp:paragraph -->' . "\n\n"; … … 142 145 143 146 $content .= '<!-- wp:button {"align":"center","backgroundColor":"dark-blue"} --> 144 <div class="wp-block-button aligncenter"><a class="wp-block-button__link has-background has-dark-blue-background-color" href=" /plugins/gutenberg/">' . __( 'Download Gutenberg Today', 'gutenbergtheme' ) . '</a></div>147 <div class="wp-block-button aligncenter"><a class="wp-block-button__link has-background has-dark-blue-background-color" href="' . "https://{$localised_domain}/plugins/gutenberg/" . '">' . __( 'Download Gutenberg Today', 'gutenbergtheme' ) . '</a></div> 145 148 <!-- /wp:button -->' . "\n\n"; 146 149 … … 150 153 /* translators: %s: The URL to the Clasic Editor plugin. */ 151 154 __( "Gutenberg is available as a plugin today, and will be included in version 5.0 of WordPress. The <a href='%s'>classic editor</a> will be available as a plugin if needed.", 'gutenbergtheme' ), 152 '/plugins/classic-editor/'155 "https://{$localised_domain}/plugins/classic-editor/" 153 156 ) . '</em></p> 154 157 <!-- /wp:paragraph -->' . "\n\n";
Note: See TracChangeset
for help on using the changeset viewer.