web-dev-qa-db-ja.com

オーバーロードされたプロパティWP_Post :: $ classesの間接的な変更は効果がありません

私は子のテーマに取り組んでいますが、すべての作業中にWalker_Nav_MenuクラスとWalkerクラスがすべての問題を引き起こしています。私の親テーマは以下のようにWalker_Nav_Menuをオーバーライドします。

if ( ! class_exists( 'Zen_Menu_Walker' ) ) {

class Zen_Menu_Walker extends Walker_Nav_Menu {

    public function display_element( $element, &$children_elements, $max_depth, $depth = 0, $args, &$output ) {
        $element->has_children = ! empty( $children_elements[ $element->ID ] );
        $element->classes[]    = ( $element->current || $element->current_item_ancestor ) ? 'active' : '';
        $element->classes[]    = ( $element->has_children && 1 !== $max_depth ) ? 'has-dropdown' : '';

        parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
    }

    public function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
        $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';

        $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, $depth ) );
        $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';

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

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

        $atts           = array();
        $atts['title']  = ! empty( $item->attr_title ) ? $item->attr_title : '';
        $atts['target'] = ! empty( $item->target ) ? $item->target : '';
        $atts['rel']    = ! empty( $item->xfn ) ? $item->xfn : '';
        $atts['href']   = ! empty( $item->url ) ? $item->url : '';

        $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args, $depth );

        $attributes = '';
        foreach ( $atts as $attr => $value ) {
            if ( ! empty( $value ) ) {
                //$value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );
                $attributes .= ' ' . $attr . '="' . $value . '"';
            }
        }

        $item_output = $args->before;
        $item_output .= '<a' . $attributes . '>';
        /** This filter is documented in wp-includes/post-template.php */
        $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 );
    }

    public function start_lvl( &$output, $depth = 0, $args = array() ) {
        $output .= "\n<ul class=\"sub-menu dropdown\">\n";
    }

}
}

これは、親テーマで致命的なエラーが発生することなく機能します。しかし、子テーマの中では致命的なエラーが発生します。

Notice: Indirect modification of overloaded property WP_Post::$classes has no effect in /srv/www/htdocs/wpsite/wp-content/themes/zen-theme/class.menu.php on line 45

StackoverflowGoogleについていくつか掘り下げましたが、私が見つけた唯一の参照は以下のとおりです。

本当に厄介な日...私はPHP 5.6を使っていて、私が読んだものから:

「PHP 5.3.0以降、&foo(&$ a);で&を使用すると、「呼び出し時の参照渡し」は推奨されないという警告が表示されます。PHP 5.4.0、呼び出し時の参照渡しが削除されたため、使用すると致命的なエラーが発生します。 "

なぜこれが起こっているのかと思います...

2
anithegregorian

"line 45"が$element->classes[]メソッドのdisplay_elementで始まるものであれば、次のようにしてください。

public function display_element( $element, &$children_elements, $max_depth, $depth = 0, $args, &$output ) {
    $element->has_children = ! empty( $children_elements[ $element->ID ] );

    if ( ! isset( $element->classes ) ) {
        $element->classes = array();
    }

    $element->classes[]    = ( $element->current || $element->current_item_ancestor ) ? 'active' : '';
    $element->classes[]    = ( $element->has_children && 1 !== $max_depth ) ? 'has-dropdown' : '';        

    parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
}

問題はdisplay_element関数がそのclassesプロパティがセットされていない要素を受け取ることであるかもしれません。その場合あなたはそのインスタンスだけを除いて参照されない配列にデータをプッシュしようとしています。

編集:また、あなたはそれ自身にそれに渡されたその要素でdisplay_elementによって呼び出されるstart_el関数にそれらのクラスを挿入することができるのになぜあなたはdisplay_element関数を使用するのですか?

1
webtoure