web-dev-qa-db-ja.com

投稿のタイトルとalt属性を投稿のタイトルに変更するにはどうすればいいですか?

The_post_thumbnailsのtitle属性とalt属性を変更し、代わりにpost titleに設定することはできますか?そのための関数を作成し、フィルタを追加するのが好き?検索しようとしましたが、欲しいものが見つからないようです。

そして事前に感謝します。

3
Pierre

これを見てください http://codex.wordpress.org/Function_Reference/the_post_thumbnail

この関数の2番目の引数では、alt、title、source、classなどのいくつかの設定フィールドを設定できます。

$default_attr = array(
        'src'   => $src,
        'class' => "attachment-$size",
        'alt'   => trim(strip_tags( wp_postmeta->_wp_attachment_image_alt )),
        'title' => trim(strip_tags( $attachment->post_title )),
    );
3
Rajeev Vyas

これを試して

$title_attribute = the_title_attribute( array( 'echo' => FALSE ) );
the_post_thumbnail(
    'full', 
    array(
        'alt'   => $title_attribute, 
        'title' => $title_attribute 
    )
);
1
Rameez SOOMRO