コピペするときは、ダブルクォーテーションを全角から半角に直して下さい。
クラシックテーマ | ブロックテーマ | |
---|---|---|
ループ | if(have_posts()): while(have_posts()):the_post();、 WP_Query | <!– wp:query {“query”:{“perPage”:3,”pages”:0,”offset”:0,”postType”:”post”,”order”:”desc”,”orderBy”:”date”,”author”:””,”search”:””,”exclude”:[],”sticky”:””,”inherit”:false}} –> <!– wp:post-template –> ■■中身■■ <!– /wp:post-template –> <!– /wp:query –> |
アーカイブページのカテゴリータイトル | the_archive_title | <!– wp:query-title {“type”:”archive”} /–> |
アーカイブページの記事タイトル | the_title | <!– wp:post-title {“isLink”:true} /–> |
シングルページのタイトル | the_title | <!– wp:post-title {“level”:1} /–> |
アイキャッチ画像 | the_post_thumbnail | <!– wp:post-featured-image {“isLink”:true,”align”:”wide”} /–> |
コンテンツ | the_content | <!– wp:post-content /–> |
抜粋 | the_excerpt | <!– wp:post-excerpt /–> |
日付 | the_date | <!– wp:post-date {“format”:”Y年n月j日”} /–> <!– wp:post-date {“format”:”Y年n月j日”,”displayType”:”modified”} /–> |
カテゴリー | the_category | <!– wp:post-terms {“term”:”category”} /–> |
タグ | the_tags | <!– wp:post-terms {“term”:”post_tag”} /–> |
シングルページのナビゲーション | next_posts_link previous_posts_link | <!– wp:post-navigation-link {“showTitle”:true} /–> <!– wp:post-navigation-link {“type”:”previous”,”showTitle”:true} /–> |
アーカイブページのナビゲーション | the_posts_pagination | <!– wp:query-pagination –> <!– wp:query-pagination-previous /–> <!– wp:query-pagination-numbers /–> <!– wp:query-pagination-next /–> <!– /wp:query-pagination –> |
著者情報 | the_author | <!– wp:avatar {“size”:48,”align”:”center”} /–> <!– wp:post-author-name {“textAlign”:”center”} /–> <!– wp:post-author-biography /–> |
検索結果 | <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post();?> ■■中身■■ <?php else: ?> 検索条件に該当する記事がありません。 <?php endif; ?> | <!– wp:query-no-results –> 検索条件に該当する記事がありません。 <!– /wp:query-no-results –> |