Changeset 3941 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/form-topic.php
- Timestamp:
- 09/03/2016 03:35:57 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/form-topic.php
r3899 r3941 30 30 31 31 <div class="bbp-template-notice"> 32 <p><?php 33 printf( 34 /* translators: %s: Search URL */ 35 __( 'Before posting a new topic, be sure to <a href="%s">search</a> to see if one has been started already.', 'wporg-forums' ), 36 esc_url( bbp_get_search_url() ) 37 ); 38 ?></p> 39 <p><?php _e( 'Having a problem? Asking a question? Make sure to read the <a href="http://codex.wordpress.org/Forum_Welcome">Forum Welcome</a> to find out how to maximize your odds of getting help!', 'wporg-forums' ); ?></p> 32 <p><?php _e( 'When posting a new topic, follow these steps:', 'wporg-forums' ); ?></p> 33 <ul> 34 <li><?php 35 /* translators: %s: Codex URL for forum welcome */ 36 printf( __( '<strong>Read the <a href="%s">Forum Welcome</a></strong> to find out how to maximize your odds of getting help!', 'wporg-forums' ), esc_url( __( 'https:///codex.wordpress.org/Forum_Welcome', 'wporg-forums' ) ) ); 37 ?></li> 38 <li><?php 39 /* translators: %s: URL to search */ 40 printf( __( '<strong><a href="%s">Search</a> the forums</strong> to see if your topic has been started already.', 'wporg-forums' ), esc_url( bbp_get_search_url() ) ); 41 ?></li> 42 <li><?php _e( '<strong>Update to the latest versions</strong> of your plugins, themes, and WordPress.', 'wporg-forums' ); ?></li> 43 <li><?php _e( '<strong>Note the exact steps</strong> needed to reproduce your issue.', 'wporg-forums' ); ?></li> 44 <li><?php _e( '<strong>Provide any information</strong> you might think is useful. If your issue is visual, note your browser and operating system. If your issue is technical, not your server environment.', 'wporg-forums' ); ?></li> 45 </ul> 40 46 </div> 41 47
Note: See TracChangeset
for help on using the changeset viewer.