Version Description
- Fixed issue introduced in 7.3.16
Download this release
Release Info
Developer | jackdewey |
Plugin | Link Library |
Version | 7.3.18 |
Comparing to | |
See all releases |
Code changes from version 7.3.17 to 7.3.18
- link-library.php +1 -1
- readme.txt +4 -1
- render-link-library-cats-sc.php +1 -1
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.3.
|
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.3.18
|
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: 6.0.1
|
7 |
-
Stable tag: 7.3.
|
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 |
|
@@ -50,6 +50,9 @@ Further configuration is available under the Link Library Settings panel.
|
|
50 |
|
51 |
== Changelog ==
|
52 |
|
|
|
|
|
|
|
53 |
= 7.3.17 =
|
54 |
* Modified to allow excludecategoryoverride to work with sub-categories in [link-library-cat] shortcode
|
55 |
|
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: 6.0.1
|
7 |
+
Stable tag: 7.3.18
|
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 |
|
50 |
|
51 |
== Changelog ==
|
52 |
|
53 |
+
= 7.3.18 =
|
54 |
+
* Fixed issue introduced in 7.3.16
|
55 |
+
|
56 |
= 7.3.17 =
|
57 |
* Modified to allow excludecategoryoverride to work with sub-categories in [link-library-cat] shortcode
|
58 |
|
render-link-library-cats-sc.php
CHANGED
@@ -129,7 +129,7 @@ function RenderLinkLibraryCategories( $LLPluginClass, $generaloptions, $libraryo
|
|
129 |
add_filter( 'get_terms', 'link_library_get_terms_filter_publish_draft_pending', 10, 3 );
|
130 |
}
|
131 |
|
132 |
-
if ( !empty( $categorylist_cpt ) && empty( $singlelinkid ) && $level == 0 ) {
|
133 |
$link_categories_query_args['include'] = explode( ',', $categorylist_cpt );
|
134 |
}
|
135 |
|
129 |
add_filter( 'get_terms', 'link_library_get_terms_filter_publish_draft_pending', 10, 3 );
|
130 |
}
|
131 |
|
132 |
+
if ( !empty( $categorylist_cpt ) && empty( $singlelinkid ) /* && $level == 0 */ ) {
|
133 |
$link_categories_query_args['include'] = explode( ',', $categorylist_cpt );
|
134 |
}
|
135 |
|