PHP注意:未定义的偏移量:0

时间:2015-07-31 03:29:38

标签: undefined

我在Wordpress上有错误。请帮助)

PHP注意:第602行/home/userpro/public_html/wp-content/themes/hoon/inc/tweaks.php中的未定义偏移量为0

1 个答案:

答案 0 :(得分:0)

/ **  *显示未来的帖子  *  *向所有用户显示事件类别中的未来帖子。  * / function hoon_show_all_future_posts($ posts){

global $wp_query, $wpdb;

if ( is_single() && $wp_query->post_count == 0 ) {
    $events_cat = hoon_option( 'events_category' );
    $request = $wpdb->get_results( $wp_query->request );
        // below line 602 //
    if ( post_is_in_descendant_category( $events_cat, $request[0]->ID )  || in_category( $events_cat, $request[0]->ID ) ) {
        $posts = $request;
    }
}

return $posts;

} add_filter(' the_posts',' hoon_show_all_future_posts');