How to show the author photo, name, and date in WordPress?
How to show the author’s photo, name, and date of the publication and modification?
How to show the author’s photo in WordPress?
1 2 3 4 5 6 7 8 9 10 | <?php global $post; // Get the author ID $author_id = get_post_field('post_author' , $post->ID); // Get the author image URL $output = get_avatar_url($author_id); // Display the author image echo '<img src="'.$output.'"/>'; ?> |
How to show the author’s name and date in WordPress?
1 2 3 4 5 6 7 8 9 10 11 | <span> By: Prof. Fazal Rehman Shamil < /span> <?php $u_time = get_the_time('U'); $u_modified_time = get_the_modified_time('U'); if ($u_modified_time >= $u_time + 86400) { echo "Last modified on "; the_modified_time('F jS, Y'); } |