Answers for "wordpress get author link"

PHP
2

wp get term link

$term_link = get_term_link($term);
Posted by: Guest on August-10-2020
0

wp get post author link

<?php $author_id=$post->post_author; ?>
<img src="<?php the_author_meta( 'avatar' , $author_id ); ?> " width="140" height="140" class="avatar" alt="<?php echo the_author_meta( 'display_name' , $author_id ); ?>" />
<?php the_author_meta( 'user_nicename' , $author_id ); ?>
Posted by: Guest on June-16-2021
-1

current url wordpress

global $wp;
echo home_url( $wp->request )
Posted by: Guest on February-08-2021

Browse Popular Code Answers by Language