Version Description
- Fix not showing included files on Windows local. Special thanks to @lindt01 for helping me identify the cause.
Download this release
Release Info
Developer | tai |
Plugin | Show Current Template |
Version | 0.4.4 |
Comparing to | |
See all releases |
Code changes from version 0.4.4-beta to 0.4.4
- readme.txt +5 -2
- show-current-template.php +4 -5
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: tai
|
|
3 |
Donate link: https://wp.tekapo.com/is-my-plugin-useful/
|
4 |
Tags: template, toolbar
|
5 |
Requires at least: 3.5
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 0.4.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -62,6 +62,9 @@ None so far.
|
|
62 |
|
63 |
== Changelog ==
|
64 |
|
|
|
|
|
|
|
65 |
= 0.4.3 =
|
66 |
* Fix the JavaScript error reported by @flexer. Special thanks to @dmchale for the fix!
|
67 |
|
3 |
Donate link: https://wp.tekapo.com/is-my-plugin-useful/
|
4 |
Tags: template, toolbar
|
5 |
Requires at least: 3.5
|
6 |
+
Tested up to: 5.7
|
7 |
+
Stable tag: 0.4.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
62 |
|
63 |
== Changelog ==
|
64 |
|
65 |
+
= 0.4.4 =
|
66 |
+
* Fix not showing included files on Windows local. Special thanks to @lindt01 for helping me identify the cause.
|
67 |
+
|
68 |
= 0.4.3 =
|
69 |
* Fix the JavaScript error reported by @flexer. Special thanks to @dmchale for the fix!
|
70 |
|
show-current-template.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Show Current Template
|
|
4 |
Plugin URI: https://wp.tekapo.com/
|
5 |
Description: Show the current template file name in the tool bar. <a href="https://wp.tekapo.com/is-my-plugin-useful/">Is this useful for you?</a>
|
6 |
Author: JOTAKI Taisuke
|
7 |
-
Version: 0.4.4
|
8 |
Author URI: https://tekapo.com/
|
9 |
Text Domain: show-current-template
|
10 |
Domain Path: /languages/
|
@@ -30,7 +30,7 @@ along with this program; if not, write to the Free Software
|
|
30 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
31 |
* */
|
32 |
|
33 |
-
define( 'WPSCT_VERSION', '0.4.4
|
34 |
|
35 |
load_plugin_textdomain( 'show-current-template', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
36 |
|
@@ -184,10 +184,9 @@ class Show_Template_File_Name {
|
|
184 |
';
|
185 |
$this->debug_info[2] = sprintf( $comment_out_debug_info_format_2, $debug_info_2 );
|
186 |
|
187 |
-
echo $this->debug_info[1];
|
188 |
-
echo $this->debug_info[2];
|
189 |
echo wp_kses_post( $included_files_html );
|
190 |
-
// echo $included_files_html;
|
191 |
}
|
192 |
|
193 |
public function add_current_template_stylesheet() {
|
4 |
Plugin URI: https://wp.tekapo.com/
|
5 |
Description: Show the current template file name in the tool bar. <a href="https://wp.tekapo.com/is-my-plugin-useful/">Is this useful for you?</a>
|
6 |
Author: JOTAKI Taisuke
|
7 |
+
Version: 0.4.4
|
8 |
Author URI: https://tekapo.com/
|
9 |
Text Domain: show-current-template
|
10 |
Domain Path: /languages/
|
30 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
31 |
* */
|
32 |
|
33 |
+
define( 'WPSCT_VERSION', '0.4.4' );
|
34 |
|
35 |
load_plugin_textdomain( 'show-current-template', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
36 |
|
184 |
';
|
185 |
$this->debug_info[2] = sprintf( $comment_out_debug_info_format_2, $debug_info_2 );
|
186 |
|
187 |
+
// echo $this->debug_info[1];
|
188 |
+
// echo $this->debug_info[2];
|
189 |
echo wp_kses_post( $included_files_html );
|
|
|
190 |
}
|
191 |
|
192 |
public function add_current_template_stylesheet() {
|