コメント欄へ移動するテキストをボタン画像にするには、aタグにコメント欄のIDを設定して画像を含める方法があります。
<a href="#comments"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/comment.png" /></a>
また、comments_popup_linkを使い、第1引数、第2引数、第3引数にボタン画像を設定することでテキストリンクをボタン画像にすることもできます。
下のコードは、commtents_popup_linkを使用した画像設定例です。
comments_popup_link('<img src="' . get_stylesheet_directory_uri() . '/images/comment.png"','<img src="' . get_stylesheet_directory_uri() . '/images/comment.png"','<img src="' . get_stylesheet_directory_uri() . '/images/comment.png"');
スポンサーリンク
コメント