Plugin Directory

Changeset 2621670


Ignore:
Timestamp:
10/28/2021 11:35:28 PM (4 years ago)
Author:
nabtron
Message:

confirmed wp 5.8.1 compatibility

Location:
wp-loginout/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-loginout/trunk/readme.txt

    r2416218 r2621670  
    44Tags: wp-loginout, login, logout, button, menu, automatically, menu
    55Requires at least: 4.0
    6 Tested up to: 5.5.3
    7 Stable tag: 0.1.4
     6Tested up to: 5.8.1
     7Stable tag: 0.1.5
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4242== Changelog ==
    4343
     44= 0.1.5 =
     45* Compatible with WordPress 5.8.1
     46
    4447= 0.1.4 =
    4548* Compatible with WordPress 5.5.3
     
    6063== Upgrade Notice ==
    6164
    62 = 0.1.4 =
    63 * Compatible with WordPress 5.5.3
     65= 0.1.5 =
     66* Compatible with WordPress 5.8.1
  • wp-loginout/trunk/wp-loginout.php

    r2416218 r2621670  
    22/**
    33 * @package WP-LogInOut
    4  * @version 0.1.4
     4 * @version 0.1.5
    55 */
    66/*
     
    99Description: Goto: Appearance > WP LoginOut. Add login / out buttons in selected menu automatically depending upon users login status.
    1010Author: Nabtron
    11 Tested up to: 5.5.3
    12 Version: 0.1.4
     11Tested up to: 5.8.1
     12Version: 0.1.5
    1313Author URI: https://nabtron.com/
    1414*/
     
    105105
    106106function wpsites_loginout_menu_link( $menu ) {
    107     echo $nab_menu_location_function;
    108107    $loginout = stripslashes(htmlspecialchars_decode(get_option('nab_ll_before'))) . wp_loginout($_SERVER['REQUEST_URI'], false ) . stripslashes(htmlspecialchars_decode(get_option('nab_ll_after')));
    109108    $menu .= $loginout;
Note: See TracChangeset for help on using the changeset viewer.