Skip to content

Instantly share code, notes, and snippets.

@herbie4
Created April 3, 2020 07:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save herbie4/031837ba2178a8b6859ca6ae1e4fd3c3 to your computer and use it in GitHub Desktop.
Save herbie4/031837ba2178a8b6859ca6ae1e4fd3c3 to your computer and use it in GitHub Desktop.
Enfold theme: keep next/prev links in same category
<?php
// return only posts in same category for previous / next links
add_filter('avia_post_nav_settings', 'hhdev_avia_post_nav_settings_mod');
function hhdev_avia_post_nav_settings_mod($settings)
{
$settings['same_category'] = true;
return $settings;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment