Pagination issue [duplicate]

Your function html5wp_pagination() is using global $wp_query;

But you’re using $query = new WP_Query( $args );

Try changing that to $wp_query = new WP_Query( $args );
And adjust the while line so that it uses $wp_query.