Skip to content

Instantly share code, notes, and snippets.

@mono96
Created June 1, 2022 03:47
Show Gist options
  • Save mono96/aca7e5314f8ee7f09441afb61ddd501c to your computer and use it in GitHub Desktop.
Save mono96/aca7e5314f8ee7f09441afb61ddd501c to your computer and use it in GitHub Desktop.
// 前後 ナビ 同じカテゴリーにする
add_filter(
'snow_monkey_get_template_part_args_template-parts/content/prev-next-nav',
function( $args ) {
// ここで $html を str_replace() や preg_replace() して書き換える
$args['vars']['_in_same_term'] = true;
return $args;
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment