Making WordPress.org

Changes between Initial Version and Version 1 of Ticket #4593


Ignore:
Timestamp:
07/10/2019 12:35:37 PM (6 years ago)
Author:
SergeyBiryukov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #4593 – Description

    initial v1  
    11Current link to https://codex.wordpress.org/Installing_WordPress#Famous_5-Minute_Installation is hardcoded, it should be made customizable (to local codex or helphub page) by locale managers (precisely - wordpress-org meta project translators)
    22
    3 Code reference: https://meta.trac.wordpress.org/browser/sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-download.php?marks=119#L120{{{#!php
     3Code reference: https://meta.trac.wordpress.org/browser/sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-download.php?marks=119#L120
     4
     5{{{#!php
    46<?php
    57/* translators: URL to installation guide */
    6 119                                                                     wp_kses_post( __( 'With our famous 5-minute installation, setting up WordPress for the first time is simple. We’ve created a <a href="%1$s">handy guide</a> to see you through the installation process.', 'wporg' ) ),
    7 120                                                                     'https://codex.wordpress.org/Installing_WordPress#Famous_5-Minute_Installation'
    8 121                                                             );
     8wp_kses_post( __( 'With our famous 5-minute installation, setting up WordPress for the first time is simple. We’ve created a <a href="%1$s">handy guide</a> to see you through the installation process.', 'wporg' ) ),
     9'https://codex.wordpress.org/Installing_WordPress#Famous_5-Minute_Installation'
    910}}}