DEV Community

kumamon
kumamon

Posted on • Edited on

1

【WordPress】前後のページリンクとタイトルを取得

prev

<?php previous_post_link('%link', '« %title'); ?>

next

<?php next_post_link('%link', '» %title'); ?>

あとはCSSで整える

<p>前のページ</p>
<?php previous_post_link('%link', '« %title'); ?>
<p>次のページ</p>
<?php next_post_link('%link', '» %title'); ?>

Top comments (0)

AWS GenAI LIVE image

Real challenges. Real solutions. Real talk.

From technical discussions to philosophical debates, AWS and AWS Partners examine the impact and evolution of gen AI.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay