Plugin Directory

Changeset 3343426


Ignore:
Timestamp:
08/12/2025 10:02:52 AM (7 months ago)
Author:
monarchwp23
Message:

Tagging Version 2.1

Location:
default-post-author
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • default-post-author/tags/2.1/default-post-author.php

    r3343286 r3343426  
    44 * Plugin URI:  https://wordpress.org/plugins/default-post-author/
    55 * Description: The easiest way to set default post author in your WordPress Site.
    6  * Version:     2.0
     6 * Version:     2.1
    77 * Requires at least: 6.1
    88 * Requires PHP: 8.0
     
    306306add_action( 'wp_save_post_revision', 'dpap_set_revision_author', 10, 2 );
    307307
     308
     309// Redirect to settings page once the plugin is activated
     310   
     311function dpap_activation_redirect( $plugin ) {
     312    if( $plugin == plugin_basename( __FILE__ ) ) {
     313        wp_safe_redirect( admin_url( 'options-general.php?page=default-post-author' ) );
     314exit;
     315    }
     316}
     317add_action( 'activated_plugin', 'dpap_activation_redirect' );
     318
     319
    308320/**
    309321 * Uninstall cleanup: remove option when plugin is uninstalled.
  • default-post-author/tags/2.1/readme.txt

    r3343286 r3343426  
    55Tested up to: 6.8
    66Requires PHP: 8.0
    7 Stable tag: 2.0
     7Stable tag: 2.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    38382. Search for 'Default Post Author'
    39393. Activate Default Post Author from your Plugins page.
    40 4. Go to Settings > General
     404. Go to Settings > Default Post Author
    41415. At the bottom of that page you will see a dropdown with all your users list
    42424. That's all.
     
    7272
    7373== Upgrade Notice ==
     74
     75= 2.1 - (August 12, 2025) =
     76- Bug Fix
    7477
    7578= 2.0 - (August 12, 2025) =
     
    115118== Changelog ==
    116119
    117 = 2.0 - (August 28, 2025) =
     120= 2.1 - (August 12, 2025) =
     121- Bug Fix
     122
     123= 2.0 - (August 12, 2025) =
    118124- Security Update
    119125- Performance Update
  • default-post-author/trunk/default-post-author.php

    r3343286 r3343426  
    44 * Plugin URI:  https://wordpress.org/plugins/default-post-author/
    55 * Description: The easiest way to set default post author in your WordPress Site.
    6  * Version:     2.0
     6 * Version:     2.1
    77 * Requires at least: 6.1
    88 * Requires PHP: 8.0
     
    306306add_action( 'wp_save_post_revision', 'dpap_set_revision_author', 10, 2 );
    307307
     308
     309// Redirect to settings page once the plugin is activated
     310   
     311function dpap_activation_redirect( $plugin ) {
     312    if( $plugin == plugin_basename( __FILE__ ) ) {
     313        wp_safe_redirect( admin_url( 'options-general.php?page=default-post-author' ) );
     314exit;
     315    }
     316}
     317add_action( 'activated_plugin', 'dpap_activation_redirect' );
     318
     319
    308320/**
    309321 * Uninstall cleanup: remove option when plugin is uninstalled.
  • default-post-author/trunk/readme.txt

    r3343286 r3343426  
    55Tested up to: 6.8
    66Requires PHP: 8.0
    7 Stable tag: 2.0
     7Stable tag: 2.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    38382. Search for 'Default Post Author'
    39393. Activate Default Post Author from your Plugins page.
    40 4. Go to Settings > General
     404. Go to Settings > Default Post Author
    41415. At the bottom of that page you will see a dropdown with all your users list
    42424. That's all.
     
    7272
    7373== Upgrade Notice ==
     74
     75= 2.1 - (August 12, 2025) =
     76- Bug Fix
    7477
    7578= 2.0 - (August 12, 2025) =
     
    115118== Changelog ==
    116119
    117 = 2.0 - (August 28, 2025) =
     120= 2.1 - (August 12, 2025) =
     121- Bug Fix
     122
     123= 2.0 - (August 12, 2025) =
    118124- Security Update
    119125- Performance Update
Note: See TracChangeset for help on using the changeset viewer.