Questions tagged «popular-posts»

1
通过WP REST JSON API在另一个PHP网站中显示受欢迎的帖子
我需要在同一域下的另一个PHP网站上显示流行和最新的帖子。 例: www.example.com ->主要网站(php,mysql) www.example.com/blog -> WordPress博客 需要在主网站上显示博客的热门近期帖子。 请注意,博客和主要网站使用两个单独的数据库。 我决定为此使用WP REST JSON API插件。现在我有不同的问题。 我使用以下代码检索上周的热门帖子。我真正需要的是通过API调用获取相同的数据。 $args = array( 'date_query' => array( array( 'after' => '1 week ago' ) ), 'posts_per_page' => $recent_posts_count, 'ignore_sticky_posts' => 1, 'meta_key' => 'post_views_count', 'orderby' => 'meta_value_num', 'order' => 'DESC' ); $popularposts = new WP_Query( $args ); …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.