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

サイトの情報を出力
bloginfo()

タイトルを出力
<h1><?php bloginfo( 'name' ); ?></h1>
キャッチフレーズを出力
<p><?php bloginfo( 'description' ); ?></p>

※サイト名は直接コードに書かない!
 wordpressで設定しておけば、bloginfoを使用して取得が可能
 コードを変更する必要がなくなるので便利

他のパラメータは以下URL参照
bloginfoパラメータ

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?