0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ワードプレスでよく使う関数

Posted at

// 基本
wp_head();
wp_footer();

// ヘッダー・フッター
get_header();
get_footer();
get_header('名前'); // header-名前.php
get_footer('名前'); // footer-名前.php

// bodyクラス
body_class();

// テンプレートファイル
get_template_part('ファイル名');
get_template_part('ファイル名', '名前');
get_template_part('フォルダ/ファイル名');
get_template_part('フォルダ/ファイル名', '名前');

// 投稿関連
have_posts();
the_post();
the_title();
the_excerpt();
the_content();
the_permalink();
get_permalink();
the_time('フォーマット');
get_the_category();

// アイキャッチ画像
has_post_thumbnail();
the_post_thumbnail('サイズ');

// URL取得
home_url();
get_template_directory_uri();
get_stylesheet_directory_uri();
get_theme_file_uri();
esc_url();

// ループ用クエリ
WP_Query(); // カスタムループ用

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?