Changeset 2621670
- Timestamp:
- 10/28/2021 11:35:28 PM (4 years ago)
- Location:
- wp-loginout/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
wp-loginout.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-loginout/trunk/readme.txt
r2416218 r2621670 4 4 Tags: wp-loginout, login, logout, button, menu, automatically, menu 5 5 Requires at least: 4.0 6 Tested up to: 5. 5.37 Stable tag: 0.1. 46 Tested up to: 5.8.1 7 Stable tag: 0.1.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 42 42 == Changelog == 43 43 44 = 0.1.5 = 45 * Compatible with WordPress 5.8.1 46 44 47 = 0.1.4 = 45 48 * Compatible with WordPress 5.5.3 … … 60 63 == Upgrade Notice == 61 64 62 = 0.1. 4=63 * Compatible with WordPress 5. 5.365 = 0.1.5 = 66 * Compatible with WordPress 5.8.1 -
wp-loginout/trunk/wp-loginout.php
r2416218 r2621670 2 2 /** 3 3 * @package WP-LogInOut 4 * @version 0.1. 44 * @version 0.1.5 5 5 */ 6 6 /* … … 9 9 Description: Goto: Appearance > WP LoginOut. Add login / out buttons in selected menu automatically depending upon users login status. 10 10 Author: Nabtron 11 Tested up to: 5. 5.312 Version: 0.1. 411 Tested up to: 5.8.1 12 Version: 0.1.5 13 13 Author URI: https://nabtron.com/ 14 14 */ … … 105 105 106 106 function wpsites_loginout_menu_link( $menu ) { 107 echo $nab_menu_location_function;108 107 $loginout = stripslashes(htmlspecialchars_decode(get_option('nab_ll_before'))) . wp_loginout($_SERVER['REQUEST_URI'], false ) . stripslashes(htmlspecialchars_decode(get_option('nab_ll_after'))); 109 108 $menu .= $loginout;
Note: See TracChangeset
for help on using the changeset viewer.