error-404 0 Denunciar post Postado Setembro 21, 2013 Ola pessoal, :) Tenho este theme, link aqui. E estou recebendo o seguinte erro: Strict Standards: Declaration of description_walker::start_el() should be compatible with Walker_Nav_Menu::start_el(&$output, $item, $depth = 0, $args = Array, $id = 0) in C:\xampp\htdocs\wordpress\wp-content\themes\bismuth\functions.php on line 278 abaixo uma parte da functions.php referente ao problema: class description_walker 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 ) .'"' : ''; if($item->object == 'page') { $varpost = get_post($item->object_id); $attributes .= ' href="' . get_site_url() . '#' . $varpost->post_name . '"'; } else $attributes .= ! empty( $item->url ) ? ' href="' . esc_attr( $item->url ) .'"' : ''; $item_output = $args->before; $item_output .= '<a'. $attributes .'>'; $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ); $item_output .= $args->link_after; $item_output .= '</a>'; $item_output .= $args->after; $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args ); } } Alguem saberia como resolver este problema? Muito obrigado pela ajuda Compartilhar este post Link para o post Compartilhar em outros sites
-=Érico=- 5 Denunciar post Postado Outubro 3, 2013 Vai nesse linha: function start_el(&$output, $item, $depth, $args) E adiciona um parâmetro no final. function start_el(&$output, $item, $depth, $args, $id = 0) Isso provavelmente vai resolver o warning. Compartilhar este post Link para o post Compartilhar em outros sites