[WP 3.2] Media Library not working – Hotfix doesnt fix it
-
Hi,
I’ve got same problem as others were experiencing after the upgrade to 3.1.3Media library not working after upgrade 3.1.3
The attachments are uploaded, and are viewable in the uploads folder, but they do not show in the media library. The correct number of media files are shown in the media library, but no listing underneath.
But – and here’s the snag.
I don’t have any plugins installed, its a vanilla install of WordPress 3.2, and the only thing I have installed is the Quality Control theme.
I’ve tried adding the hotfix – this didnt do anything and I added the following to the 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; }
and this doesnt work either.
Does anyone have any bright ideas?
- The topic ‘[WP 3.2] Media Library not working – Hotfix doesnt fix it’ is closed to new replies.