• Looks like the latest WP update broke the plugin. I guess some of the query parameters are not supported anymore.

    For example if I reduce the set of parameters to:

    $args = shortcode_atts( array(
    		'cat'					=> NULL,
    		'tag'					=> NULL,
    		'order'					=> 'DESC',
    		'orderby'				=> 'date',
    	), $atts );

    It works fine for me, as I only need those parameters. With the complete set enabled my queries always return false for have_posts()

    https://wordpress.org/plugins/shauns-wp-query-shortcode/

  • The topic ‘Broken since WP4.0: some parameters not working’ is closed to new replies.