How do I override Pagination?
I posted this in the General Discussion (Community Support) forum but no bites yet, so am posting here.
I am trying to display all my listings on a single page; just Business name without styling.
I only have approx 100 listings so massive page not an issue, so was wondering, how do I bypass the pagination?
Code is a stripped down version from va_home.php
I edited includes/core.php (and placed this code section in child theme.
and changed the function below
function va_get_home_listings() {
global $va_options, $wpdb;
if (is_page('MY-CHOSEN-PAGE')) {
$args = array(
'post_type' => VA_LISTING_PTYPE,
'posts_per_page' => '-1',
'order' => 'asc',
);
}
else {
$args = array(
'post_type' => VA_LISTING_PTYPE,
'posts_per_page' => $va_options->listings_per_page,
'order' => 'asc',
);
}
.......rest of function code....
}
This didn't work.
Any ideas?
Many thanks.
Shane