0

我想将 PHP 代码添加到我的 WordPress 博客菜单的一些链接中。我用

Dashboard > Appearance > Menus

组成菜单。如果我在那里添加 PHP 代码,它似乎不起作用。

我需要这样的链接:

<a href="http://domain.com/signup.php?user=<?PHP code goes here?>&session=2">

有没有办法在那里添加 PHP 代码并保留内置的 WordPress 菜单生成方法?

4

1 回答 1

0

您将需要为此设置一个自定义步行器。只需将其添加到您的 functions.php 文件中:

class Query_Nav extends Walker_Nav_Menu
{
    function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
        global $wp_query;
        $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';

        $class_names = $value = '';

        $classes = empty( $item->classes ) ? array() : (array) $item->classes;
        $classes[] = 'menu-item-' . $item->ID;

        $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item, $args ) );
        $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';

        $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args );
        $id = $id ? ' id="' . esc_attr( $id ) . '"' : '';

        $output .= $indent . '<li' . $id . $value . $class_names .'>';

        $attributes  = ! empty( $item->attr_title ) ? ' title="'  . esc_attr( $item->attr_title ) .'"' : '';
        $attributes .= ! empty( $item->target )     ? ' target="' . esc_attr( $item->target     ) .'"' : '';
        $attributes .= ! empty( $item->xfn )        ? ' rel="'    . esc_attr( $item->xfn        ) .'"' : '';

        //ADD YOUR PHP HERE TO DETERMINE WHATEVER IT IS YOU NEED FOR YOUR LINK
        $addedStuff = 'some added stuff to append to your URL';
        $attributes .= ! empty( $item->url )        ? ' href="'   . esc_attr( $item->url.$addedStuff) .'"' : '';
        ////////////////////

        $item_output = $args->before;
        $item_output .= '<a'. $attributes .'>';
        $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
        $item_output .= '</a>';
        $item_output .= $args->after;

        $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
    }
}

我不确定您要添加到 URL 的内容是什么,但这应该可以帮助您开始修改内容。一旦你完成了你想要的 URL 外观,你需要调整对WP Nav Menu的调用以将新的 Walker 类添加到任何现有参数中:

wp_nav_menu(array('walker' => new Query_Nav()));

有关 Nav Walkers 的更多文档:

https://wordpress.stackexchange.com/questions/14037/menu-items-description-custom-walker-for-wp-nav-menu/14039#14039
http://www.kriesi.at/archives/improve-your-wordpress-navigation-menu-output

于 2012-10-04T15:59:26.700 回答