Example #1
0
$catOrder = 1;
foreach ($cats_array as $cat) {
    $category_link = get_category_link($cat);
    if (uppsite_should_filter($category_link)) {
        continue;
    }
    $cat_query = array('cat' => $cat, 'posts_per_page' => mysiteapp_homepage_cat_posts(), 'order' => 'desc');
    if (!mysiteapp_is_fresh_wordpress_installation()) {
        $cat_query['post__not_in'] = mysiteapp_homepage_get_excluded_posts();
    }
    $query = mysiteapp_set_current_query($cat_query);
    if ($query->have_posts()) {
        $current_cat = get_category_by_slug($query->get('category_name'));
        while ($query->have_posts()) {
            $query->the_post();
            if (uppsite_should_filter(get_permalink())) {
                continue;
            }
            $cur_post = uppsite_process_post();
            mysiteapp_homepage_add_post(get_the_ID());
            $cur_post['category'] = $current_cat->name;
            $cur_post['category_link'] = $category_link;
            $cur_post['category_order'] = $catOrder;
            $all_posts[] = $cur_post;
        }
        wp_reset_postdata();
    }
    $catOrder++;
}
ob_end_clean();
print json_encode(array('root' => $all_posts));
Example #2
0
<?php

ob_start();
$all_posts = array();
while (have_posts()) {
    the_post();
    if (!uppsite_should_filter(get_permalink())) {
        $all_posts[] = uppsite_process_post();
    }
}
$total_count = wp_count_posts()->publish;
ob_end_clean();
print json_encode(array('root' => $all_posts, 'total_count' => $total_count));