Version Description
Polylang media library fix
Download this release
Release Info
Developer | galdub |
Plugin | Folders – Unlimited Folders to Organize Media Library Folder, Pages, Posts, File Manager |
Version | 2.3.8 |
Comparing to | |
See all releases |
Code changes from version 2.3.7 to 2.3.8
- folders.php +2 -2
- includes/folders.class.php +5 -5
- readme.txt +4 -1
folders.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Plugin Name: Folders
|
4 |
* Description: Arrange media, pages, custom post types and posts into folders
|
5 |
-
* Version: 2.3.
|
6 |
* Author: Premio
|
7 |
* Author URI: https://premio.io/downloads/folders/
|
8 |
* Text Domain: folders
|
@@ -30,7 +30,7 @@ if(!defined("WCP_FOLDER_URL")) {
|
|
30 |
define('WCP_FOLDER_URL', plugin_dir_url(__FILE__));
|
31 |
}
|
32 |
if(!defined("WCP_FOLDER_VERSION")) {
|
33 |
-
define('WCP_FOLDER_VERSION', "2.3.
|
34 |
}
|
35 |
|
36 |
include_once plugin_dir_path(__FILE__)."includes/folders.class.php";
|
2 |
/**
|
3 |
* Plugin Name: Folders
|
4 |
* Description: Arrange media, pages, custom post types and posts into folders
|
5 |
+
* Version: 2.3.8
|
6 |
* Author: Premio
|
7 |
* Author URI: https://premio.io/downloads/folders/
|
8 |
* Text Domain: folders
|
30 |
define('WCP_FOLDER_URL', plugin_dir_url(__FILE__));
|
31 |
}
|
32 |
if(!defined("WCP_FOLDER_VERSION")) {
|
33 |
+
define('WCP_FOLDER_VERSION', "2.3.8");
|
34 |
}
|
35 |
|
36 |
include_once plugin_dir_path(__FILE__)."includes/folders.class.php";
|
includes/folders.class.php
CHANGED
@@ -26,11 +26,11 @@ class WCP_Folders
|
|
26 |
add_action('admin_footer', array($this, 'admin_footer'));
|
27 |
|
28 |
/* check for polygon media */
|
29 |
-
$polylang_options = get_option("polylang");
|
30 |
-
if(is_array($polylang_options) && isset($polylang_options['media_support']) && $polylang_options['media_support'] == 1) {
|
31 |
-
$polylang_options['media_support'] = 0;
|
32 |
-
update_option("polylang", $polylang_options);
|
33 |
-
}
|
34 |
|
35 |
add_action('parse_tax_query', array($this, 'taxonomy_archive_exclude_children'));
|
36 |
add_action('admin_footer', array($this, 'admin_footer_for_media'));
|
26 |
add_action('admin_footer', array($this, 'admin_footer'));
|
27 |
|
28 |
/* check for polygon media */
|
29 |
+
// $polylang_options = get_option("polylang");
|
30 |
+
// if(is_array($polylang_options) && isset($polylang_options['media_support']) && $polylang_options['media_support'] == 1) {
|
31 |
+
// $polylang_options['media_support'] = 0;
|
32 |
+
// update_option("polylang", $polylang_options);
|
33 |
+
// }
|
34 |
|
35 |
add_action('parse_tax_query', array($this, 'taxonomy_archive_exclude_children'));
|
36 |
add_action('admin_footer', array($this, 'admin_footer_for_media'));
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: galdub, tomeraharon, premio
|
|
3 |
Tags: folder, folders, organize, pages folders, media library, posts folders, media folders, subfolders, file manager, directories
|
4 |
Requires at least: 3.0.0
|
5 |
Tested up to: 5.3
|
6 |
-
Stable tag: 2.3.
|
7 |
Plugin URI: https://premio.io/downloads/folders/
|
8 |
|
9 |
Folders is a WordPress plugin that will help you quickly organize and manage all of your Pages, Posts and Media library files in folders.
|
@@ -138,6 +138,9 @@ A live demo for the Folders plugin is available at <a href="https://demo.premio.
|
|
138 |
|
139 |
== Changelog ==
|
140 |
|
|
|
|
|
|
|
141 |
= 2.3.7 =
|
142 |
Translation support change
|
143 |
|
3 |
Tags: folder, folders, organize, pages folders, media library, posts folders, media folders, subfolders, file manager, directories
|
4 |
Requires at least: 3.0.0
|
5 |
Tested up to: 5.3
|
6 |
+
Stable tag: 2.3.8
|
7 |
Plugin URI: https://premio.io/downloads/folders/
|
8 |
|
9 |
Folders is a WordPress plugin that will help you quickly organize and manage all of your Pages, Posts and Media library files in folders.
|
138 |
|
139 |
== Changelog ==
|
140 |
|
141 |
+
= 2.3.8 =
|
142 |
+
Polylang media library fix
|
143 |
+
|
144 |
= 2.3.7 =
|
145 |
Translation support change
|
146 |
|