/**
* Check if more than one page of content exists
* @return boolean True if content is paginated
*/
function keel_is_paginated() {
global $wp_query;
if ( $wp_query->max_num_pages > 1 ) {
return true;
} else {
return false;
}
}