Changeset 2720831
- Timestamp:
- 05/09/2022 07:00:10 PM (4 years ago)
- Location:
- force-delete-posts
- Files:
-
- 6 edited
- 1 copied
-
tags/2.1.1 (copied) (copied from force-delete-posts/trunk)
-
tags/2.1.1/admin/forceDeletePosts.php (modified) (3 diffs)
-
tags/2.1.1/index.php (modified) (1 diff)
-
tags/2.1.1/readme.txt (modified) (1 diff)
-
trunk/admin/forceDeletePosts.php (modified) (3 diffs)
-
trunk/index.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
force-delete-posts/tags/2.1.1/admin/forceDeletePosts.php
r2717602 r2720831 24 24 25 25 /** 26 *27 26 * Enqueue plugin stylesheet 28 *29 27 */ 30 public function plugin_styles() : void28 public function plugin_styles() 31 29 { 32 30 wp_register_style( 'ls_fd_admin_css', plugin_dir_url( __FILE__ ) . 'styles.css', false, '1.0.0' ); … … 40 38 * @param $defaults 41 39 * 42 * @return mixed43 40 */ 44 public function create_column_heading($defaults) : mixed41 public function create_column_heading($defaults) 45 42 { 46 43 $defaults['ls_fd_column'] = '<span class="ls_fd_label">Force Delete</span>'; … … 64 61 65 62 /** 66 *67 63 * Delete Post 68 *69 * @return void70 64 */ 71 public function delete_post() : void65 public function delete_post() 72 66 { 73 67 global $post; -
force-delete-posts/tags/2.1.1/index.php
r2717602 r2720831 4 4 Plugin URI: https://github.com/liamstewart23/WordPressForceDeletePosts 5 5 Description: Adds the ability for administrators to instantly delete posts by adding a Force Delete Button to the Post List for Pages, Posts, and all Custom Post Types. 6 Version: 2.1. 06 Version: 2.1.1 7 7 Author: Liam Stewart 8 8 Author URI: https://liamstewart.ca -
force-delete-posts/tags/2.1.1/readme.txt
r2717602 r2720831 23 23 24 24 == Changelog == 25 = 2.1.1 = 26 * Fixes issue with PHP <7.1 25 27 = 2.1.0 = 26 28 * Updated deletion confirmation message to include post type singular label -
force-delete-posts/trunk/admin/forceDeletePosts.php
r2717602 r2720831 24 24 25 25 /** 26 *27 26 * Enqueue plugin stylesheet 28 *29 27 */ 30 public function plugin_styles() : void28 public function plugin_styles() 31 29 { 32 30 wp_register_style( 'ls_fd_admin_css', plugin_dir_url( __FILE__ ) . 'styles.css', false, '1.0.0' ); … … 40 38 * @param $defaults 41 39 * 42 * @return mixed43 40 */ 44 public function create_column_heading($defaults) : mixed41 public function create_column_heading($defaults) 45 42 { 46 43 $defaults['ls_fd_column'] = '<span class="ls_fd_label">Force Delete</span>'; … … 64 61 65 62 /** 66 *67 63 * Delete Post 68 *69 * @return void70 64 */ 71 public function delete_post() : void65 public function delete_post() 72 66 { 73 67 global $post; -
force-delete-posts/trunk/index.php
r2717602 r2720831 4 4 Plugin URI: https://github.com/liamstewart23/WordPressForceDeletePosts 5 5 Description: Adds the ability for administrators to instantly delete posts by adding a Force Delete Button to the Post List for Pages, Posts, and all Custom Post Types. 6 Version: 2.1. 06 Version: 2.1.1 7 7 Author: Liam Stewart 8 8 Author URI: https://liamstewart.ca -
force-delete-posts/trunk/readme.txt
r2717602 r2720831 23 23 24 24 == Changelog == 25 = 2.1.1 = 26 * Fixes issue with PHP <7.1 25 27 = 2.1.0 = 26 28 * Updated deletion confirmation message to include post type singular label
Note: See TracChangeset
for help on using the changeset viewer.