• Is it possible for wmp_get_popular to accept arguments similar to WP_query? Right now, I’d like to replace my wp_query with wmp_get_popular but I have arguments such as exclude certain tags. Example below of a WP_query I’d like to replace

    $loop = new WP_Query( array( 'post_type' => 'posts', 'tag__not_in' => array(45,57,58), 'posts_per_page' => $x );

    https://www.ads-software.com/extend/plugins/wp-most-popular/

  • The topic ‘mimic wp_query more?’ is closed to new replies.