Version Description
2019-10-17 = * Fixed: in some cases the widget was displayed incorrectly.
Download this release
Release Info
Developer | theluckywp |
Plugin | LuckyWP Table of Contents |
Version | 1.9.7 |
Comparing to | |
See all releases |
Code changes from version 1.9.6 to 1.9.7
- luckywp-table-of-contents.php +2 -2
- plugin/WpWidget.php +4 -1
- readme.txt +4 -1
luckywp-table-of-contents.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: LuckyWP Table of Contents
|
4 |
Plugin URI: https://theluckywp.com/product/table-of-contents/
|
5 |
Description: Creates a table of contents for your posts/pages. Works automatically or manually (via shortcode, Gutenberg block or widget).
|
6 |
-
Version: 1.9.
|
7 |
Author: LuckyWP
|
8 |
Author URI: https://theluckywp.com/
|
9 |
Text Domain: luckywp-table-of-contents
|
@@ -29,6 +29,6 @@ $lwptocAutoloader->register();
|
|
29 |
$lwptocAutoloader->addNamespace('luckywp\tableOfContents', __DIR__);
|
30 |
|
31 |
$config = require(__DIR__ . '/config/plugin.php');
|
32 |
-
(new \luckywp\tableOfContents\plugin\Plugin($config))->run('1.9.
|
33 |
|
34 |
require_once __DIR__ . '/functions.php';
|
3 |
Plugin Name: LuckyWP Table of Contents
|
4 |
Plugin URI: https://theluckywp.com/product/table-of-contents/
|
5 |
Description: Creates a table of contents for your posts/pages. Works automatically or manually (via shortcode, Gutenberg block or widget).
|
6 |
+
Version: 1.9.7
|
7 |
Author: LuckyWP
|
8 |
Author URI: https://theluckywp.com/
|
9 |
Text Domain: luckywp-table-of-contents
|
29 |
$lwptocAutoloader->addNamespace('luckywp\tableOfContents', __DIR__);
|
30 |
|
31 |
$config = require(__DIR__ . '/config/plugin.php');
|
32 |
+
(new \luckywp\tableOfContents\plugin\Plugin($config))->run('1.9.7', __FILE__, 'lwptoc_');
|
33 |
|
34 |
require_once __DIR__ . '/functions.php';
|
plugin/WpWidget.php
CHANGED
@@ -31,7 +31,10 @@ class WpWidget extends WP_Widget
|
|
31 |
{
|
32 |
$attrs = Shortcode::attrsFromJson(ArrayHelper::getValue($instance, 'config', ''));
|
33 |
$attrs = apply_filters('lwptoc_widget_attrs', $attrs, $this);
|
34 |
-
|
|
|
|
|
|
|
35 |
}
|
36 |
|
37 |
/**
|
31 |
{
|
32 |
$attrs = Shortcode::attrsFromJson(ArrayHelper::getValue($instance, 'config', ''));
|
33 |
$attrs = apply_filters('lwptoc_widget_attrs', $attrs, $this);
|
34 |
+
$html = do_shortcode(Core::$plugin->shortcode->make($attrs));
|
35 |
+
if ($html) {
|
36 |
+
echo $args['before_widget'] . $html . $args['after_widget'];
|
37 |
+
}
|
38 |
}
|
39 |
|
40 |
/**
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://theluckywp.com/product/table-of-contents/
|
|
4 |
Tags: table of contents, toc, navigation, links, seo
|
5 |
Requires at least: 4.7
|
6 |
Tested up to: 5.2.2
|
7 |
-
Stable tag: 1.9.
|
8 |
Requires PHP: 5.6.20
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -151,6 +151,9 @@ For non-English websites it is recommended to enable the `Intl` PHP extension.
|
|
151 |
|
152 |
== Changelog ==
|
153 |
|
|
|
|
|
|
|
154 |
= 1.9.6 — 2019-10-11 =
|
155 |
* Enhancements for more compatible with themes and plugins.
|
156 |
|
4 |
Tags: table of contents, toc, navigation, links, seo
|
5 |
Requires at least: 4.7
|
6 |
Tested up to: 5.2.2
|
7 |
+
Stable tag: 1.9.7
|
8 |
Requires PHP: 5.6.20
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
151 |
|
152 |
== Changelog ==
|
153 |
|
154 |
+
= 1.9.7 — 2019-10-17 =
|
155 |
+
* Fixed: in some cases the widget was displayed incorrectly.
|
156 |
+
|
157 |
= 1.9.6 — 2019-10-11 =
|
158 |
* Enhancements for more compatible with themes and plugins.
|
159 |
|