Answers for "get author permalink wordpress"

PHP
0

wordpress get post author link

<a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" 
  title="<?php echo esc_attr( get_the_author() ); ?>">
  <?php the_author(); ?>
</a>
Posted by: Guest on December-23-2021
0

get permalink by id wordpress

<?php
if(count($related)) {
    echo "<div>Read More<ul>";
    foreach($related as $id) {
        echo '<li><a href="'.get_permalink( $id ).'">'.get_the_title( $id ).'</a></li>';
    }
    echo "</ul></div>";
  }
?>
Posted by: Guest on January-04-2022

Browse Popular Code Answers by Language