根据walker中wordpress中的页面ID更改CSS

时间:2014-04-04 18:24:37

标签: php html css wordpress

目前我的函数.php

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

        $class_names = $value = '';

        $classes = empty( $item->classes ) ? array() : (array) $item->classes;

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

        $output .= $indent . '<li id="menu-item-'. $item->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 ) .'"' : '';
        $attributes .= ! empty( $item->url ) ? ' href="' . esc_attr( $item->url ) .'"' : '';

        $item_output = $args->before;
        $item_output .= '<a'. $attributes .'>';
        //$item_output .= '<span class="sub">' . $item->description . '</span>';
        $item_output .= '<img src="' . $item->description . '" />';
        $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 );
    }
}

在我的导航菜单上,它完美地工作,因为我想要它与我的主题,但我想让它只是检测页面“关于我们”并解析不同的代码集而不是语句。我尝试编写一个排除函数,然后在我的header.php上的walker语句之前解析我自己的代码,并且它运行得不好。

1 个答案:

答案 0 :(得分:0)

你可以使用

if (is_page($page_id)) { //page specific code here. }

$page_id显然是你的&#34;关于我们&#34;页。

wordpress codex