Changeset 42757
- Timestamp:
- 02/26/2018 07:34:56 PM (7 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/misc.php
r42343 r42757 278 278 279 279 /** 280 * Makes a tree structure for the Theme Editor's file list.280 * Makes a tree structure for the theme editor's file list. 281 281 * 282 282 * @since 4.9.0 … … 300 300 301 301 /** 302 * Outputs the formatted file list for the Theme Editor.302 * Outputs the formatted file list for the theme editor. 303 303 * 304 304 * @since 4.9.0 … … 367 367 368 368 /** 369 * Makes a tree structure for the Plugin Editor's file list.369 * Makes a tree structure for the plugin editor's file list. 370 370 * 371 371 * @since 4.9.0 … … 389 389 390 390 /** 391 * Outputs the formatted file list for the Plugin Editor.391 * Outputs the formatted file list for the plugin editor. 392 392 * 393 393 * @since 4.9.0 -
trunk/src/wp-admin/plugin-editor.php
r42685 r42757 123 123 'title' => __( 'Overview' ), 124 124 'content' => 125 '<p>' . __( 'You can use the Plugin Editor to make changes to any of your plugins’ individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customizations.' ) . '</p>' .125 '<p>' . __( 'You can use the plugin editor to make changes to any of your plugins’ individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customizations.' ) . '</p>' . 126 126 '<p>' . __( 'Choose a plugin to edit from the dropdown menu and click the Select button. Click once on any file name to load it in the editor, and make your changes. Don’t forget to save your changes (Update File) when you’re finished.' ) . '</p>' . 127 127 '<p>' . __( 'The Documentation menu below the editor lists the PHP functions recognized in the plugin file. Clicking Look Up takes you to a web page about that particular function.' ) . '</p>' . -
trunk/src/wp-admin/theme-editor.php
r42343 r42757 27 27 'title' => __( 'Overview' ), 28 28 'content' => 29 '<p>' . __( 'You can use the Theme Editor to edit the individual CSS and PHP files which make up your theme.' ) . '</p>' .29 '<p>' . __( 'You can use the theme editor to edit the individual CSS and PHP files which make up your theme.' ) . '</p>' . 30 30 '<p>' . __( 'Begin by choosing a theme to edit from the dropdown menu and clicking the Select button. A list then appears of the theme’s template files. Clicking once on any file name causes the file to appear in the large Editor box.' ) . '</p>' . 31 31 '<p>' . __( 'For PHP files, you can use the Documentation dropdown to select from functions recognized in that file. Look Up takes you to a web page with reference material about that particular function.' ) . '</p>' .
Note: See TracChangeset
for help on using the changeset viewer.