web-dev-qa-db-ja.com

添付ファイルIDに基づいて添付ファイルのタイトルを取得する

私はgetMetaを通してイメージを得ています。添付ファイルのIDを返します。今、私はタイトル、代替テキスト、説明などを取得したいです。

代替テキストの場合、これは非常にうまく機能します。

get_post_meta($logo, '_wp_attachment_image_alt', true);

今私はタイトルを取得したいです。私は$attachment->post_titleでそれができることを知りました、しかしここで私は唯一のidを持っています。添付ファイルIDのタイトルを取得する方法

17
testing

添付ファイルIDがある場合は、get_the_title()を使用できます。

$attachment_title = get_the_title($attach_id)

http://codex.wordpress.org/Function_Reference/get_the_title

30
anu