主题森林支持告诉我,我在WordPress主题中有两个错误: this和this。
这是wp_nav_menu
助行器功能:
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 ) .'"' : '';
$attributes .= ! empty( $item->url ) ? ' href="' . esc_attr( $item->url ) .'"' : '';
if($depth != 0)
{
$description = $append = $prepend = "";
}
$item_output = $args->before;
$item_output .= '<a'. $attributes .' class="external">';
$item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID );
$item_output .= '</a>';
$item_output .= $args->after;
$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
if ($item->menu_order == 1) {
$classes[] = 'first';
}
}
}
问题是我的WordPress没有t show this errors. I have WordPress 3.8.1 and I have
WP_DEBUG`设置为true。
第一个错误似乎修正了这一行:function start_el(&$output, $item, $depth = 0, $args = array(), $id = 0)
。
第二个错误我已将$item_output = $args->before;
更改为$item_output = $args['before'];
但这会导致错误:
致命错误:不能在第338行的/home/codetoco/public_html/wp-content/themes/quins/functions.php中使用stdClass类型的对象作为数组
为什么他们会收到错误?我该如何解决这个错误?
答案 0 :(得分:1)
第二个错误我更改了$ item_output = $ args-&gt;之前;至 $ item_output = $ args ['before'];但这会导致错误:
致命错误:无法使用stdClass类型的对象作为数组 /home/codetoco/public_html/wp-content/themes/quins/functions.php on 第338行
因为$ args是一个对象而不是一个数组所以你需要使用->
而不是[]
您可能还想查看this以了解有关在PHP中启用错误报告的更多信息。在开发过程中启用错误报告确实很有帮助,因为它会在您做错时立即通知您。但是,当您将代码推送到实时服务器时,请确保将其禁用,因为这可能是泄露您不希望外界了解的信息的潜在原因。