Changeset 3343426
- Timestamp:
- 08/12/2025 10:02:52 AM (7 months ago)
- Location:
- default-post-author
- Files:
-
- 4 edited
- 1 copied
-
tags/2.1 (copied) (copied from default-post-author/trunk)
-
tags/2.1/default-post-author.php (modified) (2 diffs)
-
tags/2.1/readme.txt (modified) (4 diffs)
-
trunk/default-post-author.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
default-post-author/tags/2.1/default-post-author.php
r3343286 r3343426 4 4 * Plugin URI: https://wordpress.org/plugins/default-post-author/ 5 5 * Description: The easiest way to set default post author in your WordPress Site. 6 * Version: 2. 06 * Version: 2.1 7 7 * Requires at least: 6.1 8 8 * Requires PHP: 8.0 … … 306 306 add_action( 'wp_save_post_revision', 'dpap_set_revision_author', 10, 2 ); 307 307 308 309 // Redirect to settings page once the plugin is activated 310 311 function dpap_activation_redirect( $plugin ) { 312 if( $plugin == plugin_basename( __FILE__ ) ) { 313 wp_safe_redirect( admin_url( 'options-general.php?page=default-post-author' ) ); 314 exit; 315 } 316 } 317 add_action( 'activated_plugin', 'dpap_activation_redirect' ); 318 319 308 320 /** 309 321 * Uninstall cleanup: remove option when plugin is uninstalled. -
default-post-author/tags/2.1/readme.txt
r3343286 r3343426 5 5 Tested up to: 6.8 6 6 Requires PHP: 8.0 7 Stable tag: 2. 07 Stable tag: 2.1 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 38 38 2. Search for 'Default Post Author' 39 39 3. Activate Default Post Author from your Plugins page. 40 4. Go to Settings > General40 4. Go to Settings > Default Post Author 41 41 5. At the bottom of that page you will see a dropdown with all your users list 42 42 4. That's all. … … 72 72 73 73 == Upgrade Notice == 74 75 = 2.1 - (August 12, 2025) = 76 - Bug Fix 74 77 75 78 = 2.0 - (August 12, 2025) = … … 115 118 == Changelog == 116 119 117 = 2.0 - (August 28, 2025) = 120 = 2.1 - (August 12, 2025) = 121 - Bug Fix 122 123 = 2.0 - (August 12, 2025) = 118 124 - Security Update 119 125 - Performance Update -
default-post-author/trunk/default-post-author.php
r3343286 r3343426 4 4 * Plugin URI: https://wordpress.org/plugins/default-post-author/ 5 5 * Description: The easiest way to set default post author in your WordPress Site. 6 * Version: 2. 06 * Version: 2.1 7 7 * Requires at least: 6.1 8 8 * Requires PHP: 8.0 … … 306 306 add_action( 'wp_save_post_revision', 'dpap_set_revision_author', 10, 2 ); 307 307 308 309 // Redirect to settings page once the plugin is activated 310 311 function dpap_activation_redirect( $plugin ) { 312 if( $plugin == plugin_basename( __FILE__ ) ) { 313 wp_safe_redirect( admin_url( 'options-general.php?page=default-post-author' ) ); 314 exit; 315 } 316 } 317 add_action( 'activated_plugin', 'dpap_activation_redirect' ); 318 319 308 320 /** 309 321 * Uninstall cleanup: remove option when plugin is uninstalled. -
default-post-author/trunk/readme.txt
r3343286 r3343426 5 5 Tested up to: 6.8 6 6 Requires PHP: 8.0 7 Stable tag: 2. 07 Stable tag: 2.1 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 38 38 2. Search for 'Default Post Author' 39 39 3. Activate Default Post Author from your Plugins page. 40 4. Go to Settings > General40 4. Go to Settings > Default Post Author 41 41 5. At the bottom of that page you will see a dropdown with all your users list 42 42 4. That's all. … … 72 72 73 73 == Upgrade Notice == 74 75 = 2.1 - (August 12, 2025) = 76 - Bug Fix 74 77 75 78 = 2.0 - (August 12, 2025) = … … 115 118 == Changelog == 116 119 117 = 2.0 - (August 28, 2025) = 120 = 2.1 - (August 12, 2025) = 121 - Bug Fix 122 123 = 2.0 - (August 12, 2025) = 118 124 - Security Update 119 125 - Performance Update
Note: See TracChangeset
for help on using the changeset viewer.