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?

More than 3 years have passed since last update.

WordPressタグのメモ

Posted at

専用タグについては基本的に
WordPress Codex:https://wpdocs.osdn.jp/Main_Page
で調べる。

##よく使うものまとめ
####
/headの直前
####
/bodyの直前

上記はhtml,stylesheetやJavaScriptの読み込み等

#####記事作成フォーム
<?php WHILE(have_posts()):the_post(); ?> <div class="post-preview"> <a href="post.html"> <h2 class="post-title"> <?php the_title(); ?> </h2> <h3 class="post-subtitle"> <?php the_excerpt(); ?> </h3> </a> <p class="post-meta">Posted by <?php the_author(); ?> on <?php the_time("Y年n月j日 l"); ?></p> </div> <hr> <?php endwhile; ?>

#####
投稿記事のタイトル読み込み&表示

#####
投稿記事の内容読み込み&表示

#####
投稿の公開時刻
$dは表記形式("Y年n月j日 l")("Y/m/d")("Y-m-d")など

#####
投稿者名の読み込み&表記

#####
cssの参照先自動取得。基本的に以下の型で取得します。
<link href="<?php echo get_template_directory_uri() ?>/css/〇〇.css" rel="stylesheet">

#####
ホーム画面へのリンク読み込み

#####ページの前後移動リンク
<?php previous_posts_link(); ?> <?php next_posts_link(); ?>
または
<?php echo paginate_links(); ?>

#####
hrefに入れると記事へのリンクになる
リンク先のページはテンプレート階層に従う

##よくあるミス
#####CSSが反映されない場合
head外のパス設定ミスの可能性。
headタグ外にもCSSを参照している箇所がある場合は/で読み込む必要があります。echoしましょう。

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?