ワードプレス ブログにタグと記事の編集を追加
2013年6月7日
Categories | ブログ(WordPress)
ここのところブログばかりいじってる私ですが、
今回は記事のフッターに、
タグ(TAGS)リンクと、投稿記事の編集(Edit this page.)リンクを追加してみました。
弄ったページは「content.php」で、書式だけこう追加。
1 2 3 4 5 6 7 8 9 | <p class = "tags" > <?php if (has_tag()): ?> <?php the_tags( 'TAGS: ' , ' / ' ); ?> | <?php endif ; ?> <?php echo get_the_date(); ?> | <?php edit_post_link( 'Edit this page.' ); ?> </p> |
ビジュアル的なデザインは<p class=”×××”>で、「style.css」に追記してくさい。
因みに「Edit this page.」リンクはログインしていないと表示されません。
コメントを残す