ログイン中のユーザーを「ブログ上の表示名(display_name)」で表示
1 2 3 4 5 |
<?php $user = wp_get_current_user(); $UID = $user -> ID; $author_name = get_the_author_meta( 'display_name', $UID ); echo $author_name; }?> |
display_nameを10文字で制限して表示
1 2 3 4 5 6 7 8 9 |
<?php $user = wp_get_current_user(); $UID = $user -> ID; $author_name = get_the_author_meta( 'display_name', $UID ); if(mb_strlen($author_name) > 10){ $text= mb_substr(strip_tags( $author_name), 0, 10); echo $text.'…'; }else{ echo $author_name; }?> |
コメント