We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 642b193 commit 7e89a17Copy full SHA for 7e89a17
themes/wporg-5ftf-2024/inc/block-config.php
@@ -47,6 +47,14 @@ function add_site_navigation_menus( $menus ) {
47
'url' => '/my-pledges/',
48
'className' => 'has-separator',
49
);
50
+ if ( ! is_user_logged_in() ) {
51
+ global $wp;
52
+ $redirect_url = home_url( $wp->request );
53
+ $menu[] = array(
54
+ 'label' => __( 'Log in', 'wporg-5ftf' ),
55
+ 'url' => wp_login_url( $redirect_url ),
56
+ );
57
+ }
58
59
return array(
60
'main' => $menu,
0 commit comments