Changeset 2551420
- Timestamp:
- 06/21/2021 12:44:49 PM (5 years ago)
- Location:
- lbk-table-of-content
- Files:
-
- 11 added
- 2 edited
-
tags/1.0.2 (added)
-
tags/1.0.2/css (added)
-
tags/1.0.2/css/frontend.css (added)
-
tags/1.0.2/includes (added)
-
tags/1.0.2/includes/admin-options-page.php (added)
-
tags/1.0.2/includes/class.admin.php (added)
-
tags/1.0.2/includes/lbk-toc-func.php (added)
-
tags/1.0.2/js (added)
-
tags/1.0.2/js/frontend.js (added)
-
tags/1.0.2/lbk-toc.php (added)
-
tags/1.0.2/readme.txt (added)
-
trunk/lbk-toc.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lbk-table-of-content/trunk/lbk-toc.php
r2541662 r2551420 8 8 * @license GPL-2.0-or-later 9 9 * @category plugin 10 * @version 1.0. 110 * @version 1.0.2 11 11 * 12 12 * @wordpress-plugin … … 14 14 * Plugin URI: https://lbk.vn/ 15 15 * Description: LBK Table Of Content 16 * Version: 1.0. 117 * Requires at least: 1.0. 116 * Version: 1.0.2 17 * Requires at least: 1.0.2 18 18 * Requires PHP: 7.4 19 19 * Author: Briki - LBK … … 52 52 * @var string 53 53 */ 54 const VERSION = '1.0. 0';54 const VERSION = '1.0.2'; 55 55 56 56 /** … … 157 157 */ 158 158 public static function add_toc($content) { 159 if ( is_single() ) {159 if ( is_single() && ! empty( $content ) ) { 160 160 $dom = new DOMDocument(); 161 161 $previous_value = libxml_use_internal_errors(TRUE); -
lbk-table-of-content/trunk/readme.txt
r2541662 r2551420 3 3 Donate link: https://lbk.vn/ 4 4 Tags: table of content, lbk-toc, lbk, toc 5 Requires at least: 1.0. 15 Requires at least: 1.0.2 6 6 Tested up to: 5.7 7 Stable tag: 1.0. 17 Stable tag: 1.0.2 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later
Note: See TracChangeset
for help on using the changeset viewer.