Plugin Directory

Changeset 2134682


Ignore:
Timestamp:
08/06/2019 05:02:23 AM (7 years ago)
Author:
tremidkhar
Message:

Release: 0.3.1
Fixed: Fix undefined error when editing media

Location:
enter-title-here-changer/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • enter-title-here-changer/trunk/CHANGELOG.MD

    r2120272 r2134682  
    11# 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
    27
    38## [0.3.0] - July 9, 2019
  • enter-title-here-changer/trunk/README.md

    r2120272 r2134682  
    33
    44### 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.
     5By replacing the placeholder text when creating a new post, help to instruct users to what the title should be.
    66
    77This plugin is inspired by an article at [WPBeginner](https://www.wpbeginner.com/wp-tutorials/how-to-replace-enter-title-here-text-in-wordpress/).
     
    1414Go to the `Settings -> Writing` menu to manage the placeholder.
    1515
    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  
    141141        if ( ! empty( $screen ) ) {
    142142            $new_title = $this->settings;
    143             $title     = $new_title[ $screen ];
     143            if ( ! empty( $new_title[ $screen ] ) ) {
     144                $title = $new_title[ $screen ];
     145            }
    144146        }
    145147
  • enter-title-here-changer/trunk/enter-title-here-changer.php

    r2120272 r2134682  
    44 * Plugin URI: https://wordpress.org/plugins/enter-title-here-changer/
    55 * Description: Replace the default `Enter title here` (Legacy) or `Add Title` (Gutenberg) placeholder when creating a new post.
    6  * Version: 0.3.0
     6 * Version: 0.3.1
    77 * Author: Tremi Dkhar
    88 * Author URI: https://github.com/TremiDkhar/
     
    7272        // Plugin Version.
    7373        if ( ! defined( 'ETHC_VERSION' ) ) {
    74             define( 'ETHC_VERSION', '0.3.0' );
     74            define( 'ETHC_VERSION', '0.3.1' );
    7575        }
    7676
  • enter-title-here-changer/trunk/readme.txt

    r2120272 r2134682  
    55Tested up to: 5.2.2
    66Requires PHP: 5.6
    7 Stable tag: 0.3.0
     7Stable tag: 0.3.1
    88License: GPL-2.0+
    99
     
    1414
    1515### 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.
     16By replacing the placeholder text when creating a new post, help to instruct users to what the title should be.
    1717
    1818This plugin is inspired by an article at [WPBeginner](https://www.wpbeginner.com/wp-tutorials/how-to-replace-enter-title-here-text-in-wordpress/).
     
    2020### Bug Report
    2121If you spotted a bug, you are welcome to [report on GitHub](https://wordpress.org/plugins/enter-title-here-changer/).
    22 
    2322
    2423== Usage ==
     
    3736No, the plugin does not work in Multisite. But it will be added in the later version.
    3837
    39  == Upgrade Notice ==
    40 Fix the undefined error when trying to create a new quick draft in dashboard
    41 
    4238== 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
    4740
    4841= Earlier Version =
Note: See TracChangeset for help on using the changeset viewer.