diff options
-rw-r--r-- | giglogadmin.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/giglogadmin.php b/giglogadmin.php index 54d8694..89d25c1 100644 --- a/giglogadmin.php +++ b/giglogadmin.php @@ -16,6 +16,20 @@ * License: AGPLv3 * License URI: https://www.gnu.org/licenses/agpl-3.0.txthttps://www.gnu.org/licenses/agpl-3.0.txt */ + + //function to show menus based on whether user is logged in or not. Giglog admin pages should only be visible for logged in users/can eventually be customized by role if needed + +function my_wp_nav_menu_args( $args = '' ) { + +if( is_user_logged_in() ) { + $args['menu'] = 'Loggedusers'; +} else { + $args['menu'] = 'Notloggedusers'; +} + return $args; +} +add_filter( 'wp_nav_menu_args', 'my_wp_nav_menu_args' ); + if ( !class_exists( 'GiglogAdmin_Plugin' ) ) { require_once __DIR__ . '/includes/public/shortcodes/giglog_bands.php'; |