二者都previous_post_link
和next_post_link
接受第三个布尔参数$in_same_term, 指定链接是否应位于同一分类术语中。
因此,在您的场景中,您需要进行以下更新:
previous_post_link
<?php previous_post_link(\'%link\', \'⟪ ⟪ ⟪ %title\') ?>
updated to
<?php previous_post_link(\'%link\', \'⟪ ⟪ ⟪ %title\', true) ?>
and next_post_link
<?php next_post_link(\'%link\', \'%title ⟫ ⟫ ⟫\') ?>
updated to
<?php next_post_link(\'%link\', \'%title ⟫ ⟫ ⟫\', true) ?>