I'm getting this error message within the dashboard or Wordpress:
Notice: Undefined index: post_type in /var/www/vhosts/dpsnet.frontier.ms/wp-content/plugins/responsive-slider/responsive-slider.php on line 594
I've not made an custom edits to the code. Can anybody help? Here is the function associated with the error:
function responsive_slider_column_order($wp_query) {
if( is_admin() ) {
$post_type = $wp_query->query['post_type'];
if( $post_type == 'slides' ) {
$wp_query->set( 'orderby', 'menu_order' );
$wp_query->set( 'order', 'ASC' );
}
}
}