Hi baokhangluu,
I had the same problem ad you. I solved it by adding the code below to my themes functions.php.
add_filter( ‘request’, ‘wp_hotfix_313_post_status_query_string_request’ );
function wp_hotfix_313_post_status_query_string_request( $qvs ) {
if ( isset( $qvs[‘post_status’] ) && is_array( $qvs[‘post_status’] ) )
$qvs[‘post_status’] = implode( ‘,’, $qvs[‘post_status’] );
return $qvs;
}
Oh, tried this, and got
Fatal error: Cannot redeclare wp_hotfix_313_post_status_query_string_request() (previously declared in /home/step2151/public_html/petridish/wp-content/plugins/hotfix/hotfix.php:76) in /home/step2151/public_html/petridish/wp-content/themes/quality-control/functions.php on line 451
Disabled the hotfix plugin and did it again, and got nothing still.
If anyone could help I’d be really grateful (and I dont think this should be listed as resolved).