Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

paginate

// WP_Query arguments
$args = array (
	'pagination'             => true,
	'posts_per_page'         => '13',
	'posts_per_archive_page' => '33',
	'ignore_sticky_posts'    => false,
);

// The Query
$query = new WP_Query( $args );