ワードプレスのテーマでアクティブになっているかどうかに関係なく、次と前のボタンを表示するのに非常に苦労しています。私はそれを機能させる方法を理解できないようです。私はこれをやろうとしています: http://www.kinocreative.co.uk/hints-and-tips/wordpress-nextprevious-post-navigation-with-images-and-inactive-links/正確に、しかし私のカテゴリーのアーカイブページのために. 私は次のようなものを使ってみました:
<?
echo '<a href="'.get_permalink( get_the_ID()-1 ).'" title="'.get_the_title( get_the_ID()-1 ).'">Previous</a>';
echo '<a href="'.get_permalink( get_the_ID()+1 ).'" title="'.get_the_title( get_the_ID()-1 ).'">Next</a>';
?>
しかし、カテゴリの次/前のページに移動するには機能しません。