Skip to content

Instantly share code, notes, and snippets.

@maco1028
Last active July 31, 2021 13:16
Show Gist options
  • Save maco1028/f6159c200ec4abf54e685fa7731209e7 to your computer and use it in GitHub Desktop.
Save maco1028/f6159c200ec4abf54e685fa7731209e7 to your computer and use it in GitHub Desktop.
<?php bloginfo('description'); ?> //説明表示
<?php the_content(); ?> //投稿内容を表示させる
<?php the_excerpt(); ?> //記事の抜粋110文字
<?php the_title(); ?> //記事のタイトル
<?php the_permalink(); ?> //記事のURL
<?php the_date(); ?> //記事の投稿日時(投稿日が重複してる場合は最初の1記事のみ)
<?php the_time(); ?> //記事の投稿日時
<?php the_author(); ?> //記事の投稿者名
<?php the_author_posts_link(); ?> //記事の投稿者名とリンクを出力
<?php the_category(); ?> //記事のカテゴリー名とリンクを出力
<?php the_tags(); ?> //記事に付けたタグ
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment