'post',
'post_status' => 'publish',
'paged' => $paged,
'order'=> 'DESC'
);
$query = new WP_Query;
$myposts = $query->query($args);
?>
$post) {
$img_id = get_post_thumbnail_id($post->ID);
$alt_text = get_post_meta($img_id , '_wp_attachment_image_alt', true);
?>
max_num_pages > 1 ) {
echo "
" . paginate_links(array(
'total' => $query->max_num_pages,
'prev_text' => __('<', 'affiliate-booster'),
'next_text' => __('>', 'affiliate-booster')
)) . "
";
}
?>