자주 쓰는 코드 모음
<?php the_author_posts_link( ); ?>
<?php comments_popup_link( __( '0' ), __( '1' ), __( '%' ) ); ?>
<?php edit_post_link( __( 'e' ) ); ?>
<?php
// Don't show the avatar if the previous post was by the same user
$current_user_id = get_the_author_ID( );
if( $previous_user_id !== $current_user_id ) {
echo get_avatar( $current_user_id, get_the_author_email( ), 48 );
}
$previous_user_id = $current_user_id;
?>
History
Last edited on 05/04/2008 08:35 by nova
Comments (0)