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 5 years have passed since last update.

wordpress 取得と出力

Posted at

出力の場合

サイトのタイトルを出力するためのコード
the_title();

出力したい場合。。。
<?php the_title(); ?>

そのままタグで囲んで使おう!
<h1><?php the_title(); ?><h1>

取得の場合

サイトのタイトルを取得するためのコード('get'とかついてたりする)
get_the_title();

取得した値を出力するには。。。
<?php echo get_the_title(); ?>
('echo' で出力できるぞ!)

取得した値を変数に代入しよう
<?php $title = get_the_title(); ?>
(get_the_title(); を変数 $title に代入している)

変数 $title を出力!
<?php echo $title; ?>

変数に文字列を結合して出力したりもできて便利!
<?php $title2 = $title.'こんにちは'; ?>
<?php echo $title2; ?>
$titleに'岡田さん'と入っていたとすると、'岡田さんこんにちは'と表示される
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?