Solving pagination issue with Monochrome WP theme
If you’re using the Monochrome WordPress theme from Mono-Lab, you may have noticed a problem with the pagination function at the bottom of the post list:
When clicking any of the numbers, it breaks and returns a 404. This can be solved by editing navigation.php and changing the following line of code from:
user_trailingslashit('page/%#%/', 'paged');;
to:
user_trailingslashit('index.php/page/%#%/', 'paged');;

