Changeset 2636439
- Timestamp:
- 11/28/2021 06:55:06 AM (4 years ago)
- Location:
- wp-category-sort/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
wp-category-sort.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-category-sort/trunk/readme.txt
r2635506 r2636439 4 4 Requires at least: 2.8 5 5 Tested up to: 5.8.1 6 Stable tag: 2.0. 16 Stable tag: 2.0.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
wp-category-sort/trunk/wp-category-sort.php
r2635506 r2636439 4 4 Plugin URI: https://wordpress.org/plugins/wp-category-sort/ 5 5 Description: The WP Category Sort plugin allows you to easily reorder your categories the way you want via drag and drop. 6 Version: 2.0. 16 Version: 2.0.2 7 7 Author: Lovin Nagi 8 8 Author URI: https://profiles.wordpress.org/lovinnagi … … 131 131 die(); 132 132 133 // Set your custom capability through this filter. 134 $custom_cap = apply_filters( 'wpcatsort_custom_cap', 'manage_categories' ); 135 136 if ( ! current_user_can( $custom_cap ) ) { 137 die(esc_html__( 'You need a higher level of permission.', 'wpcatsort' )); 138 } 139 133 140 $data = stripslashes($_POST['order']); 134 141
Note: See TracChangeset
for help on using the changeset viewer.