アイキャッチ画像がある場合、画像ページへのナビゲーションリンクをシングルページに表示する
アタッチメントページへのリンクではなく画像へのリンクでよい場合は、以下のような記述で間に合います。
if ( has_post_thumbnail() ) {
$raindrops_args_alt= array(
'before'=> 'Permalink to: '
, 'after'=> ''
, 'echo'=> false
);
the_post_thumbnail( 'large'
, array('class'=> 'single-thumbnail-style'
, 'alt'=> the_title_attribute( $raindrops_args )
)
);
}