0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

個人的によく使うWordPressテンプレートタグチートシート

Last updated at Posted at 2019-07-10

基本的なやつ

<?php the_category(); ?> // カテゴリー
<?php echo get_the_date(); ?> // 日付
<?php echo get_the_title(); ?> // タイトル
<?php the_post_thumbnail('thumbnail'); ?> // サムネイル
<?php the_permalink(); ?> // パーマリンク
<?php echo get_template_directory_uri(); ?> // 画像ファイルの前

切り出したテンプレートを出力 wpdocs

<?php get_template_part( $slug ); ?>

WP_Query wpdocs チートシート

<?php
$args = array(
    'post_type' => 'post', 
    'posts_per_page' => -1,
    'no_found_rows' => true,  //ページャーを使う時はfalseに。
 );

$the_query = new WP_Query($args);
if ($the_query->have_posts()) :
  while ($the_query->have_posts()) : $the_query->the_post();


  endwhile;endif;
  wp_reset_postdata();
?>

ダッシュボードで設定できるメニューの出力 wpdocs

<?php
$args = array(
  'menu_class'      => 'menu',
  'container'       => false,
wp_nav_menu( $args );
?>

bodyになんか適当にクラスを振ってくれるやつ wpdocs

<body <?php body_class( $class ); ?>> // 基本的に$classは空白でよい

カスタム投稿タイプ wpdocs

<?php register_post_type( $post_type, $args ); ?>
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?