Forum

Thread tagged as: Problem, Blog

perch blog custom not work after pagination clicked

Hi,

I am using perch_blog_custom like so:

$featured = perch_blog_custom(array(
    'filter' => 'featured',
    'match' => 'eq',
    'value' => '1',
    'skip-template' => 'true'
));

this works on the blog listing page but not after you have clicked a pagination link and a querystring is added to the URL

Any ideas why?

Ta

Paul Langley

Paul Langley 0 points

  • 5 years ago
Drew McLellan

Drew McLellan 2638 points
Perch Support

If you don't want the pagination to affect that item, you can turn it off.

'paginate' => false,

oh ok thanks