ソースを直に修正しているため、テーマをアップデートすると上書きされてしまい、再度修正する必要があるので注意。
デフォルトでは「日付 @ 時刻」という風に表示されるので、日付と時刻の間の「@」を除去する。
- WordPress 4.3–ja
- Basic 1.5.1 (Themify framework 2.3.3)
basic\theme-functions.php を修正。
628 629 630 631 632 633 634 |
<p class="comment-author"> <?php echo get_avatar($comment,$size='48'); ?> <?php printf('<cite>%s</cite>', get_comment_author_link()) ?><br /> <small class="comment-time"><strong> <?php comment_date( apply_filters( 'themify_comment_date', '' ) ); ?> </strong> @ <?php comment_time( apply_filters( 'themify_comment_time', '' ) ); ?> <?php edit_comment_link( __('Edit', 'themify'),' [',']') ?> </small> </p> |
↓
628 629 630 631 632 633 634 |
<p class="comment-author"> <?php echo get_avatar($comment,$size='48'); ?> <?php printf('<cite>%s</cite>', get_comment_author_link()) ?><br /> <small class="comment-time"><strong> <?php comment_date( apply_filters( 'themify_comment_date', '' ) ); ?> </strong> <?php comment_time( apply_filters( 'themify_comment_time', '' ) ); ?> <?php edit_comment_link( __('Edit', 'themify'),' [',']') ?> </small> </p> |
Jetpackのコメント機能とかを使っている場合はガン無視でOK。