Easy Table of Contents - Version 2.0.36.1

Version Description

11/07/2022 = * BUG: Shortcode [toc] not working #332

Download this release

Release Info

Developer magazine3
Plugin Icon 128x128 Easy Table of Contents
Version 2.0.36.1
Comparing to
See all releases

Code changes from version 2.0.36 to 2.0.36.1

Files changed (2) hide show
  1. README.txt +4 -1
  2. easy-table-of-contents.php +4 -4
README.txt CHANGED
@@ -5,7 +5,7 @@ Tags: table of contents, toc
5
  Requires at least: 5.3
6
  Tested up to: 6.0
7
  Requires PHP: 5.6.20
8
- Stable tag: 2.0.36
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -105,6 +105,9 @@ Easy Table Contents is a fork of the excellent [Table of Contents Plus](https://
105
  4. Activate the plugin on the Plugins admin page.
106
 
107
  == Changelog ==
 
 
 
108
  = 2.0.36 11/05/2022 =
109
  * BUG: Last version removed sidebar & some other contents #329
110
  * BUG: Structured plugin is broken with TOC 2.0.35 + Pure CSS stopped working #327
5
  Requires at least: 5.3
6
  Tested up to: 6.0
7
  Requires PHP: 5.6.20
8
+ Stable tag: 2.0.36.1
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
105
  4. Activate the plugin on the Plugins admin page.
106
 
107
  == Changelog ==
108
+ = 2.0.36.1 11/07/2022 =
109
+ * BUG: Shortcode [toc] not working #332
110
+
111
  = 2.0.36 11/05/2022 =
112
  * BUG: Last version removed sidebar & some other contents #329
113
  * BUG: Structured plugin is broken with TOC 2.0.35 + Pure CSS stopped working #327
easy-table-of-contents.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Easy Table of Contents
4
  * Plugin URI: https://tocwp.com/
5
  * Description: Adds a user friendly and fully automatic way to create and display a table of contents generated from the page content.
6
- * Version: 2.0.36
7
  * Author: Magazine3
8
  * Author URI: https://tocwp.com/
9
  * Text Domain: easy-table-of-contents
@@ -26,7 +26,7 @@
26
  * @package Easy Table of Contents
27
  * @category Plugin
28
  * @author Magazine3
29
- * @version 2.0.36
30
  */
31
 
32
  use Easy_Plugins\Table_Of_Contents\Debug;
@@ -49,7 +49,7 @@ if ( ! class_exists( 'ezTOC' ) ) {
49
  * @since 1.0
50
  * @var string
51
  */
52
- const VERSION = '2.0.36';
53
 
54
  /**
55
  * Stores the instance of this class.
@@ -1045,7 +1045,7 @@ INLINESTICKYTOGGLEJS;
1045
  // static $run = true;
1046
  $html = '';
1047
 
1048
- if ( 'ez-toc' == $tag ) {
1049
 
1050
  $post = self::get( get_the_ID() );
1051
 
3
  * Plugin Name: Easy Table of Contents
4
  * Plugin URI: https://tocwp.com/
5
  * Description: Adds a user friendly and fully automatic way to create and display a table of contents generated from the page content.
6
+ * Version: 2.0.36.1
7
  * Author: Magazine3
8
  * Author URI: https://tocwp.com/
9
  * Text Domain: easy-table-of-contents
26
  * @package Easy Table of Contents
27
  * @category Plugin
28
  * @author Magazine3
29
+ * @version 2.0.36.1
30
  */
31
 
32
  use Easy_Plugins\Table_Of_Contents\Debug;
49
  * @since 1.0
50
  * @var string
51
  */
52
+ const VERSION = '2.0.36.1';
53
 
54
  /**
55
  * Stores the instance of this class.
1045
  // static $run = true;
1046
  $html = '';
1047
 
1048
+ if ( 'ez-toc' == $tag || 'toc' == $tag ) {
1049
 
1050
  $post = self::get( get_the_ID() );
1051