From 694fe41ff5e98d43edee307a95c304c3f5fea0f5 Mon Sep 17 00:00:00 2001 From: Kelly Dwan Date: Wed, 28 Feb 2024 16:58:29 -0500 Subject: [PATCH] Local Navigation: Set the WP-CLI Commands page to current when on the archive landing page. Fixes #498 --- source/wp-content/themes/wporg-developer-2023/functions.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/wp-content/themes/wporg-developer-2023/functions.php b/source/wp-content/themes/wporg-developer-2023/functions.php index 044ae948b..1c1405d52 100644 --- a/source/wp-content/themes/wporg-developer-2023/functions.php +++ b/source/wp-content/themes/wporg-developer-2023/functions.php @@ -569,6 +569,8 @@ function set_site_breadcrumbs() { * Provide a list of local navigation menus. */ function add_site_navigation_menus( $menus ) { + global $wp; + $is_cli_home = ( is_archive() && isset( $wp->request ) && 'cli/commands' === $wp->request ); return array( 'developer' => array( array( @@ -582,6 +584,7 @@ function add_site_navigation_menus( $menus ) { array( 'label' => __( 'WP-CLI Commands', 'wporg' ), 'url' => '/cli/commands/', + 'className' => $is_cli_home ? 'current-menu-item' : 'test', ), ), );