Say for example i have created a custom post type. I have implemented pagination for the same.
When i call this url
http://localhost.dm/news/multi-media-gallery/page/2/, it show page not found.
But if i try with
http://localhost.dm/news/multi-media-gallery?page=2, it work.
Now to make the pagination work with permalink you need to add the following rewrite rule in your theme functions.php
add_action(‘init’, function ()
{
add_rewrite_rule(‘(.?.+?)/page/?([0-9]{1,})/?$’, ‘index.php?pagename=$matches[1]&paged=$matches[2]’, ‘top’); flush_rewrite_rules();
}, 1000);
Vinod Ram has been in Software Industry since 2006 and has experience of over 16 years in Software Development & Project Management domain specialised majorly in LAMP stack & Open Source Technology, building enterprise level Web based Application, Large Database driven and huge traffic Websites and Project Management.
He loves to write information articles and blog to share his knowledge and experience with the outside world and help people to find solution for their problems.