Version Description
- Fix to only make clear: both div display after categories when rendering category list using block editor
Download this release
Release Info
Developer | jackdewey |
Plugin | Link Library |
Version | 7.1.8 |
Comparing to | |
See all releases |
Code changes from version 7.1.7 to 7.1.8
- link-library.php +1 -1
- readme.txt +4 -1
- render-link-library-cats-sc.php +3 -2
link-library.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Link Library
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/link-library/
|
5 |
Description: Display links on pages with a variety of options
|
6 |
-
Version: 7.1.
|
7 |
Author: Yannick Lefebvre
|
8 |
Author URI: http://ylefebvre.github.io/
|
9 |
Text Domain: link-library
|
3 |
Plugin Name: Link Library
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/link-library/
|
5 |
Description: Display links on pages with a variety of options
|
6 |
+
Version: 7.1.8
|
7 |
Author: Yannick Lefebvre
|
8 |
Author URI: http://ylefebvre.github.io/
|
9 |
Text Domain: link-library
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://ylefebvre.github.io/wordpress-plugins/link-library/
|
|
4 |
Tags: link, list, directory, page, library, AJAX, RSS, feeds, inline, search, paging, add, submit, import, batch, pop-up
|
5 |
Requires at least: 4.4
|
6 |
Tested up to: 5.7.1
|
7 |
-
Stable tag: 7.1.
|
8 |
|
9 |
The purpose of this plugin is to add the ability to output a list of link categories and a complete list of links with notes and descriptions.
|
10 |
|
@@ -48,6 +48,9 @@ Further configuration is available under the Link Library Settings panel.
|
|
48 |
|
49 |
== Changelog ==
|
50 |
|
|
|
|
|
|
|
51 |
= 7.1.7 =
|
52 |
* Fix to make RSS feed only accessible when option to publish it is actually checked
|
53 |
|
4 |
Tags: link, list, directory, page, library, AJAX, RSS, feeds, inline, search, paging, add, submit, import, batch, pop-up
|
5 |
Requires at least: 4.4
|
6 |
Tested up to: 5.7.1
|
7 |
+
Stable tag: 7.1.8
|
8 |
|
9 |
The purpose of this plugin is to add the ability to output a list of link categories and a complete list of links with notes and descriptions.
|
10 |
|
48 |
|
49 |
== Changelog ==
|
50 |
|
51 |
+
= 7.1.8 =
|
52 |
+
* Fix to only make clear: both div display after categories when rendering category list using block editor
|
53 |
+
|
54 |
= 7.1.7 =
|
55 |
* Fix to make RSS feed only accessible when option to publish it is actually checked
|
56 |
|
render-link-library-cats-sc.php
CHANGED
@@ -655,10 +655,11 @@ function RenderLinkLibraryCategories( $LLPluginClass, $generaloptions, $libraryo
|
|
655 |
$output .= '<div>' . __('No categories found', 'link-library') . '.</div>';
|
656 |
}
|
657 |
|
658 |
-
if ( 0 == $level ) {
|
659 |
-
$output .= "\n<div style='clear:both'
|
660 |
}
|
661 |
|
|
|
662 |
}
|
663 |
|
664 |
if ( 'toggles' == $flatlist ) {
|
655 |
$output .= '<div>' . __('No categories found', 'link-library') . '.</div>';
|
656 |
}
|
657 |
|
658 |
+
if ( 0 == $level && defined( 'REST_REQUEST' ) && REST_REQUEST ) {
|
659 |
+
$output .= "\n<div style='clear:both' />\n\n";
|
660 |
}
|
661 |
|
662 |
+
$output .= '<!-- End of Link Library Categories Output -->';
|
663 |
}
|
664 |
|
665 |
if ( 'toggles' == $flatlist ) {
|