Changeset 2134682
- Timestamp:
- 08/06/2019 05:02:23 AM (7 years ago)
- Location:
- enter-title-here-changer/trunk
- Files:
-
- 5 edited
-
CHANGELOG.MD (modified) (1 diff)
-
README.md (modified) (2 diffs)
-
admin/class-ethc-settings.php (modified) (1 diff)
-
enter-title-here-changer.php (modified) (2 diffs)
-
readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
enter-title-here-changer/trunk/CHANGELOG.MD
r2120272 r2134682 1 1 # Enter Title Here Changer Changelog 2 3 ## [0.3.1] - July 30, 2019 4 - Fixed: Fix undefined error when editing media 5 6 [0.3.1]: https://github.com/TremiDkhar/enter-title-here-changer/compare/0.3.0...0.3.1 2 7 3 8 ## [0.3.0] - July 9, 2019 -
enter-title-here-changer/trunk/README.md
r2120272 r2134682 3 3 4 4 ### Why you need to replace the title placeholder text? 5 By replacing the placeholder text when creating a new post, help to instruct users to use for enter the name or title of the post.5 By replacing the placeholder text when creating a new post, help to instruct users to what the title should be. 6 6 7 7 This plugin is inspired by an article at [WPBeginner](https://www.wpbeginner.com/wp-tutorials/how-to-replace-enter-title-here-text-in-wordpress/). … … 14 14 Go to the `Settings -> Writing` menu to manage the placeholder. 15 15 16 == Frequently Asked Questions == 17 = Do this plugin work in Multisite? = 18 No, the plugin does not work in Multisite. But it will be added in the later version. 16 ## Frequently Asked Questions 17 18 ### Do this plugin work in Multisite? 19 > No, the plugin does not work in Multisite. But it will be added in the later version. -
enter-title-here-changer/trunk/admin/class-ethc-settings.php
r2120272 r2134682 141 141 if ( ! empty( $screen ) ) { 142 142 $new_title = $this->settings; 143 $title = $new_title[ $screen ]; 143 if ( ! empty( $new_title[ $screen ] ) ) { 144 $title = $new_title[ $screen ]; 145 } 144 146 } 145 147 -
enter-title-here-changer/trunk/enter-title-here-changer.php
r2120272 r2134682 4 4 * Plugin URI: https://wordpress.org/plugins/enter-title-here-changer/ 5 5 * Description: Replace the default `Enter title here` (Legacy) or `Add Title` (Gutenberg) placeholder when creating a new post. 6 * Version: 0.3. 06 * Version: 0.3.1 7 7 * Author: Tremi Dkhar 8 8 * Author URI: https://github.com/TremiDkhar/ … … 72 72 // Plugin Version. 73 73 if ( ! defined( 'ETHC_VERSION' ) ) { 74 define( 'ETHC_VERSION', '0.3. 0' );74 define( 'ETHC_VERSION', '0.3.1' ); 75 75 } 76 76 -
enter-title-here-changer/trunk/readme.txt
r2120272 r2134682 5 5 Tested up to: 5.2.2 6 6 Requires PHP: 5.6 7 Stable tag: 0.3. 07 Stable tag: 0.3.1 8 8 License: GPL-2.0+ 9 9 … … 14 14 15 15 ### Why you need to replace the title placeholder text? 16 By replacing the placeholder text when creating a new post, help to instruct users to use for enter the name or title of the post.16 By replacing the placeholder text when creating a new post, help to instruct users to what the title should be. 17 17 18 18 This plugin is inspired by an article at [WPBeginner](https://www.wpbeginner.com/wp-tutorials/how-to-replace-enter-title-here-text-in-wordpress/). … … 20 20 ### Bug Report 21 21 If you spotted a bug, you are welcome to [report on GitHub](https://wordpress.org/plugins/enter-title-here-changer/). 22 23 22 24 23 == Usage == … … 37 36 No, the plugin does not work in Multisite. But it will be added in the later version. 38 37 39 == Upgrade Notice ==40 Fix the undefined error when trying to create a new quick draft in dashboard41 42 38 == Changelog == 43 - Improved: More information is added to readme.txt files 44 - Removed: Remove support for GitHub Updater 45 - Changed: Plugin URI has been change to the WordPress repos URI 46 - Fixed: Fix the undefined error when trying to create a new quick draft in dashboard 39 - Fixed: Fix undefined error when editing media 47 40 48 41 = Earlier Version =
Note: See TracChangeset
for help on using the changeset viewer.