Version Description
- Folders settings type bug fixed
Download this release
Release Info
Developer | galdub |
Plugin | Folders – Unlimited Folders to Organize Media Library Folder, Pages, Posts, File Manager |
Version | 2.2.1 |
Comparing to | |
See all releases |
Code changes from version 2.2 to 2.2.1
- folders.php +2 -2
- readme.txt +7 -1
- templates/admin/general-settings.php +2 -2
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.2
|
6 |
* Author: Premio
|
7 |
* Author URI: https://premio.io/downloads/folders/
|
8 |
*/
|
@@ -15,7 +15,7 @@ define('WCP_FOLDER', 'folders');
|
|
15 |
define('WCP_FOLDER_VAR', 'folders_settings');
|
16 |
define("WCP_DS", DIRECTORY_SEPARATOR);
|
17 |
define('WCP_FOLDER_URL',plugin_dir_url(__FILE__));
|
18 |
-
define('WCP_FOLDER_VERSION',"2.2");
|
19 |
|
20 |
include_once plugin_dir_path(__FILE__)."includes/folders.class.php";
|
21 |
register_activation_hook( __FILE__, array( 'WCP_Folders', 'activate' ) );
|
2 |
/**
|
3 |
* Plugin Name: Folders
|
4 |
* Description: Arrange media, pages, custom post types and posts into folders
|
5 |
+
* Version: 2.2.1
|
6 |
* Author: Premio
|
7 |
* Author URI: https://premio.io/downloads/folders/
|
8 |
*/
|
15 |
define('WCP_FOLDER_VAR', 'folders_settings');
|
16 |
define("WCP_DS", DIRECTORY_SEPARATOR);
|
17 |
define('WCP_FOLDER_URL',plugin_dir_url(__FILE__));
|
18 |
+
define('WCP_FOLDER_VERSION',"2.2.1");
|
19 |
|
20 |
include_once plugin_dir_path(__FILE__)."includes/folders.class.php";
|
21 |
register_activation_hook( __FILE__, array( 'WCP_Folders', 'activate' ) );
|
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.2
|
6 |
-
Stable tag: 2.2
|
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.
|
@@ -103,6 +103,9 @@ Step 3: Add new folders for your post type.
|
|
103 |
= Is there a time limit for the free plan? =
|
104 |
No. you can use the free plan as long as you want.
|
105 |
|
|
|
|
|
|
|
106 |
= Do I need any coding skills to use Folders plugin? =
|
107 |
No! just activate the plugin and you're good to go.
|
108 |
|
@@ -127,6 +130,9 @@ A live demo for the Folders plugin is available at <a href="https://demo.premio.
|
|
127 |
|
128 |
== Changelog ==
|
129 |
|
|
|
|
|
|
|
130 |
= 2.2 =
|
131 |
* Fixed collapsed menu state bug
|
132 |
|
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.2
|
6 |
+
Stable tag: 2.2.1
|
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.
|
103 |
= Is there a time limit for the free plan? =
|
104 |
No. you can use the free plan as long as you want.
|
105 |
|
106 |
+
= Does Folders change the URL of my images/posts/pages? =
|
107 |
+
No. adding a page/post/image into a folder will not change its URL
|
108 |
+
|
109 |
= Do I need any coding skills to use Folders plugin? =
|
110 |
No! just activate the plugin and you're good to go.
|
111 |
|
130 |
|
131 |
== Changelog ==
|
132 |
|
133 |
+
= 2.2.1 =
|
134 |
+
* Folders settings type bug fixed
|
135 |
+
|
136 |
= 2.2 =
|
137 |
* Fixed collapsed menu state bug
|
138 |
|
templates/admin/general-settings.php
CHANGED
@@ -43,7 +43,7 @@ defined('ABSPATH') or wp_die('Nope, not accessing this');
|
|
43 |
?>
|
44 |
<tr>
|
45 |
<th>
|
46 |
-
<label for="folders_<?php echo esc_attr($post_type->name); ?>" ><?php esc_html_e( 'Use folders with:', WCP_FOLDER )." "
|
47 |
</th>
|
48 |
<td>
|
49 |
<input type="checkbox" id="folders_<?php echo esc_attr($post_type->name); ?>" name="folders_settings[]" value="<?php echo esc_attr($post_type->name); ?>"<?php if ( in_array( $post_type->name, $options ) ) echo ' checked="checked"'; ?>/>
|
@@ -53,7 +53,7 @@ defined('ABSPATH') or wp_die('Nope, not accessing this');
|
|
53 |
} else { ?>
|
54 |
<tr>
|
55 |
<th>
|
56 |
-
<label for="folders_<?php echo esc_attr($post_type->name); ?>" ><?php esc_html_e( 'Use folders with:', WCP_FOLDER )." "
|
57 |
</th>
|
58 |
<td>
|
59 |
<input type="checkbox" id="folders_<?php echo esc_attr($post_type->name); ?>" name="folders_settings[]" value="<?php echo esc_attr($post_type->name); ?>"<?php if ( in_array( $post_type->name, $options ) ) echo ' checked="checked"'; ?>/>
|
43 |
?>
|
44 |
<tr>
|
45 |
<th>
|
46 |
+
<label for="folders_<?php echo esc_attr($post_type->name); ?>" ><?php esc_html_e( 'Use folders with: ', WCP_FOLDER )." ".esc_html_e($post_type->label); ?></label>
|
47 |
</th>
|
48 |
<td>
|
49 |
<input type="checkbox" id="folders_<?php echo esc_attr($post_type->name); ?>" name="folders_settings[]" value="<?php echo esc_attr($post_type->name); ?>"<?php if ( in_array( $post_type->name, $options ) ) echo ' checked="checked"'; ?>/>
|
53 |
} else { ?>
|
54 |
<tr>
|
55 |
<th>
|
56 |
+
<label for="folders_<?php echo esc_attr($post_type->name); ?>" ><?php esc_html_e( 'Use folders with: ', WCP_FOLDER )." ".esc_html_e($post_type->label); ?></label>
|
57 |
</th>
|
58 |
<td>
|
59 |
<input type="checkbox" id="folders_<?php echo esc_attr($post_type->name); ?>" name="folders_settings[]" value="<?php echo esc_attr($post_type->name); ?>"<?php if ( in_array( $post_type->name, $options ) ) echo ' checked="checked"'; ?>/>
|