Link Library - Version 7.3.17

Version Description

  • Modified to allow excludecategoryoverride to work with sub-categories in [link-library-cat] shortcode
Download this release

Release Info

Developer jackdewey
Plugin Icon 128x128 Link Library
Version 7.3.17
Comparing to
See all releases

Code changes from version 7.3.16 to 7.3.17

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.16
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.17
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.16
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.16 =
54
  * Added parameter to [link-library-cats] shortcode called parent_cat_id. Should be set to empty "" if using categorylistoverride and only specifying sub-categories
55
  * Corrected some errors in French translation
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.17
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.17 =
54
+ * Modified to allow excludecategoryoverride to work with sub-categories in [link-library-cat] shortcode
55
+
56
  = 7.3.16 =
57
  * Added parameter to [link-library-cats] shortcode called parent_cat_id. Should be set to empty "" if using categorylistoverride and only specifying sub-categories
58
  * Corrected some errors in French translation
render-link-library-cats-sc.php CHANGED
@@ -133,7 +133,7 @@ function RenderLinkLibraryCategories( $LLPluginClass, $generaloptions, $libraryo
133
  $link_categories_query_args['include'] = explode( ',', $categorylist_cpt );
134
  }
135
 
136
- if ( !empty( $excludecategorylist_cpt ) && empty( $singlelinkid ) && $level == 0 ) {
137
  $link_categories_query_args['exclude'] = explode( ',', $excludecategorylist_cpt );
138
  }
139
 
133
  $link_categories_query_args['include'] = explode( ',', $categorylist_cpt );
134
  }
135
 
136
+ if ( !empty( $excludecategorylist_cpt ) && empty( $singlelinkid ) /* && $level == 0 */ ) {
137
  $link_categories_query_args['exclude'] = explode( ',', $excludecategorylist_cpt );
138
  }
139