Folders – Unlimited Folders to Organize Media Library Folder, Pages, Posts, File Manager - Version 2.4.6

Version Description

Added support for non-public custom posts

Download this release

Release Info

Developer galdub
Plugin Icon wp plugin Folders – Unlimited Folders to Organize Media Library Folder, Pages, Posts, File Manager
Version 2.4.6
Comparing to
See all releases

Code changes from version 2.4.5 to 2.4.6

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.4.5
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.4.5");
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.4.6
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.4.6");
34
  }
35
 
36
  include_once plugin_dir_path(__FILE__)."includes/folders.class.php";
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.4
6
- Stable tag: 2.4.5
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.
@@ -94,14 +94,27 @@ The plugin is compatible with Gutenberg, Elementor website builder, Divi, Visual
94
 
95
  Download this plugin today for free and get 10 folders to organize your WP content. Then unlock unlimited folders with the Pro Plan for max organization!
96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
 
98
  == Screenshots ==
99
 
100
- 1. Organize WordPress media library folders
101
- 2. Organize WordPress pages folders
102
- 3. Organize WordPress posts folders
103
- 4. Check out the Folders plugin in action with the media library
104
- 5. Organize posts, pages, and custom posts with ease
105
 
106
  == Installation ==
107
 
@@ -143,6 +156,9 @@ A live demo for the Folders plugin is available at <a href="https://demo.premio.
143
 
144
  == Changelog ==
145
 
 
 
 
146
  = 2.4.5 =
147
  Width issue for posts, pages, and custom posts + onboarding for new users
148
 
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.4
6
+ Stable tag: 2.4.6
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.
94
 
95
  Download this plugin today for free and get 10 folders to organize your WP content. Then unlock unlimited folders with the Pro Plan for max organization!
96
 
97
+ = Testimonials =
98
+
99
+ > "Wow, great tool to optimize WordPress productivity<br>
100
+ > This is such a great tool and fixes something that WordPress lacks in its media library options. I’m going to start adding this to all client WordPress sites moving forward for the ease of use and added organization. Thanks for your work!"<br><br>
101
+ > <strong>Justin Parsons, See Justin Code</strong><br>
102
+
103
+ > Order your chaos!<br>
104
+ > We have thousands of images in our library and tons of products in our online store. So I needed something to get some order in this chaos: enter Folders. The free version gives you a good start. It is immediately clear how you can get about organising your stuff. I got the upgrade almost immediately, I liked it so much. You can organise your images, pages, products and lots more. No more endless lists. Highly recommended."<br><br>
105
+ > <strong>Jan-Wouter Stigter, Malta Furniture Ltd</strong><br>
106
+
107
+ > "Clean, easy to work with, and support group very helpful!<br>
108
+ > The plugin work great for organizing my media, pages, and posts. It’s clean, intuitive, and best of all, it does not slow down the loading of my media unlike other similar plugins I tried. I especially am appreciative of the willingness of the developers/support staff for input for possible improvements of their plugin and their helpfulness and quick response in solving my issues. I would definitely recommend."<br><br>
109
+ > <strong>Cynthia Corley, CC Custom Works</strong><br>
110
 
111
  == Screenshots ==
112
 
113
+ 1. Check out the Folders plugin in action with the media library
114
+ 2. Organize posts, pages, and custom posts with ease
115
+ 3. Organize WordPress media library folders
116
+ 4. Organize WordPress pages folders
117
+ 5. Organize WordPress posts folders
118
 
119
  == Installation ==
120
 
156
 
157
  == Changelog ==
158
 
159
+ = 2.4.6 =
160
+ Added support for non-public custom posts
161
+
162
  = 2.4.5 =
163
  Width issue for posts, pages, and custom posts + onboarding for new users
164
 
templates/admin/general-settings.php CHANGED
@@ -108,7 +108,7 @@ defined('ABSPATH') or wp_die('Nope, not accessing this');
108
  <div class="accordion-left">
109
  <table class="form-table">
110
  <?php
111
- $post_types = get_post_types( array( 'public' => true ), 'objects' );
112
  $post_array = array("page", "post", "attachment");
113
  foreach ( $post_types as $post_type ) : ?>
114
  <?php
108
  <div class="accordion-left">
109
  <table class="form-table">
110
  <?php
111
+ $post_types = get_post_types( array(), 'objects' );
112
  $post_array = array("page", "post", "attachment");
113
  foreach ( $post_types as $post_type ) : ?>
114
  <?php