2

我有一个使用 wp_nav_menu() 来构建菜单的 wordpress 主题。我在这个菜单中有一个自定义菜单项,它转到一个非标准的 wordpress 页面。有没有办法可以根据 url 字符串中的匹配有条件地将此导航项设置为当前?

谢谢

4

1 回答 1

4

您可以使用 Wordpress 中的 nav_menu_css_class 来实现您想要的结果。使用此钩子,您可以更改可应用于菜单的 CSS 类数组。

add_filter( 'nav_menu_css_class', 'add_parent_url_menu_class', 10, 2 );

function add_parent_url_menu_class( $classes = array(), $item = false ) {
    // Get current URL
    $current_url = current_url();
    // Get homepage URL
    $homepage_url = trailingslashit( get_bloginfo( 'url' ) );
    // Exclude 404 and homepage
    if( is_404() or $item->url == $homepage_url ) return $classes;
        if ( strstr( $current_url, $item->url) ) {
            // Add the 'parent_url' class
            $classes[] = 'parent_url';
        }
    return $classes;
}

function current_url() {
    // Protocol
    $url = ( 'on' == $_SERVER['HTTPS'] ) ? 'https://' : 'http://';
    $url .= $_SERVER['SERVER_NAME'];
    // Port
    $url .= ( '80' == $_SERVER['SERVER_PORT'] ) ? '' : ':' . $_SERVER['SERVER_PORT'];
    $url .= $_SERVER['REQUEST_URI'];

    return trailingslashit( $url );
}

此方法将忽略 404 页面或站点的根目录,但如果当前 URL 与菜单项 URL 匹配,则会将类添加到菜单项。

此代码的全部功劳:http ://www.rarescosma.com/2010/11/add-a-class-to-wp_nav_menu-items-with-urls-included-in-the-current-url/

于 2012-07-04T13:22:13.857 回答