Skip to content

Instantly share code, notes, and snippets.

@nishinoshake
Last active May 29, 2016 04:31
Show Gist options
  • Save nishinoshake/03f49534c7bf1aafe9f9 to your computer and use it in GitHub Desktop.
Save nishinoshake/03f49534c7bf1aafe9f9 to your computer and use it in GitHub Desktop.
テンプレートタグ
<?php bloginfo('name'); ?> 「一般設定」管理画面で指定したブログのタイトル
<?php bloginfo('description'); ?> 「一般設定」管理画面で指定したブログの説明文
<?php bloginfo('url'); ?> サイトURL
<?php bloginfo('stylesheet_url'); ?> 使用中のメインCSSファイルのURL
<?php the_time(); ?>    現在の記事の投稿時間を表示。
<?php the_date(); ?>     現在の記事の投稿日時を表示。
<?php the_title(); ?>   現在の記事のタイトルを表示
<?php the_content(); ?>  現在の記事の本文を表示。
<?php the_permalink(); ?> 現在の記事のパーマリンクURLを表示
<?php the_category(); ?>  記事のカテゴリーをリンク付きで表示
<?php the_ID(); ?>  現在の記事の記事IDを表示。取得するには get_the_ID
<?php wp_list_pages(); ?>  リンク付きページ一覧を表示/取得 
<?php next_post_link(); ?>  記事ページで次の記事へのリンクを表示
<?php previous_post_link(); ?> 記事ページで前の記事へのリンクを表示
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment