I use this method
$args = array(
'posts_per_page' => 4,
'offset' => 0,
'orderby' => 'post_date',
'order' => 'DESC',
'post_type' => 'post',
'post_status' => 'publish',
'suppress_filters' => true);
$recent_postss = wp_get_recent_posts($args, ARRAY_A);
?>
foreach ($recent_postss as $posts) { }
Now I’d like to create a pagination for this. I’ve tried lots but nothing works for me. How should I modify this code to create pagination?
Try to this it is working for custom post
For pagination link
Try this:
Sample code for Pagination Links: