WordPress Popular Postsで Uncaught Error: Class ‘WPP_Query’ not found in のエラーを解消する方法。
WPP_Queryクラスは、5.0.0以降非推奨になりました。代わりに\WordPressPopularPosts\Query
を使用します。
$args = array(
'range' => 'weekly',
'post_type' => 'media',
'order_by' => 'views',
'limit' => 5
);
// $wpp_query = new WPP_Query($args);
$wpp_query = new \WordPressPopularPosts\Query($args);