Forum Replies Created

Viewing 1 replies (of 1 total)
  • I also had this same error after updating the plugin version.

    to fix it I edited the file below:
    /wp-content/plugins/wordpress-popular-posts/src/template-tags.php

    and I changed the search parameters of the query getting as shown below.

    before:

    $args = [
            'range' => 'all',
            '_postID' => $id
        ];

    later:

    $args = [
            'range' => 'all',
            '_postID' => $id,
            'post_type' => get_post_type($id)
        ];
Viewing 1 replies (of 1 total)