get_the_author

Sponsored Link

記事の著者を取得します。このタグはループ内で使用されている必要があります。

Sponsored Link

投稿がない著者のページを表示するには、この議論を参照してください。

Retrieve the post author. This tag must be used within The Loop.

To display a page for authors which have no posts, see this discussion.

get_the_authorのテンプレートタグ使用方法

<?php $author = get_the_author(); ?> 

のパラメーター

$deprecated

(string) (optional)推奨されていません。
デフォルト: ”

(string) (optional) Deprecated.
Default: ”

返り値

執筆者の表示名です。

(string)
The author’s display name.

執筆者の’公開’名を捉える

フィールドとして、公に著者の表示名内に捉える値です。

Grabs the value in the user’s Display name publicly as field.

<?php $author = get_the_author(); ?> 

変更ログ

Since: 1.5.0

ソースファイル

get_the_author()は、wp-includes/author-template.php内に位置しています。

get_the_author() is located in wp-includes/author-template.php.

Sponsored Link