Compare commits

..

No commits in common. "42b8c3b8f1b2f5b9d0cf3cd683deac47114e092d" and "00b7dbd0b78c07f194a53f29086cea4a694e0af0" have entirely different histories.

2 changed files with 0 additions and 54 deletions

View File

@ -1,51 +0,0 @@
<?php
add_action('rest_api_init', 'endlessPosts');
function endlessPosts()
{
register_rest_route('api-posts/v1', "/endlessPosts", array(
'methods' => WP_REST_Server::READABLE,
'callback' => 'getEndlessPostsResults'
));
}
function getEndlessPostsResults($data, $paged = 1)
{
global $wpdb;
$link = $data['permalink'];
$id_from_permalink = explode('/', $link);
$id_from_permalink = explode('-', $id_from_permalink[3]);
$id = $id_from_permalink[0];
$category = get_the_category($id);
$result = array();
$args = array(
'category__in' => $category[0]->term_id,
'posts_per_page' => 10,
'paged' => $paged
);
$posts = new WP_Query($args);
while ( $posts->have_posts() ) {
$posts->the_post();
$terms = get_the_category();
$result[] = array(
'permalink' => get_the_permalink(),
'terms' => $terms[0]->slug,
);
}
return $result;
}
//"http://pamtest.ru/702-oformlenie-osago-na-a-b-c-d-otkryto-vsem-agenta/"
//"http://pamtest.ru/294-6-j-urok-kak-strahovomu-agentu-zadavat-voprosy-i-rabotat-s-vozrazheniyami/"

View File

@ -1,8 +1,5 @@
<?php
require get_theme_file_path('/api-posts/api-posts.php');
// ? get variables (globally)
function gV($gv)
{