投稿・ページのURLを表示する
投稿・ページのURLを表示させるには、ループ内でthe_permalink関数を使用します。
<?php if(have_posts()):while(have_posts()):the_post(); ?> <?php the_permalink(); ?> <?php endwhile;endif; ?>
記事タイトルにリンクを貼る、といった場合は以下のようになります。
<?php if(have_posts()):while(have_posts()):the_post(); ?> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> <?php endwhile;endif; ?>
記事公開日:
最終更新日:
コメントを残す