![javascript](https://habrastorage.org/r/w120/webt/59/cc/76/59cc7600c78a2239379574.jpeg)
JavaScript
0
Вклад в тег
$paged = 1;
$req_uri = array_reverse(explode('/', $_SERVER['REQUEST_URI']));
foreach ($req_uri as $value) {
if(is_numeric($value)) {
$paged = $value;
break;
}
}
$args = array (
'post_type' => 'post',
'post_status' => array( 'publish' ),
'posts_per_page' => '8',
'paged' => $paged
);