如果你在循环中运行这个,那么你不需要作者ID
<?php
if ( have_posts() ) {
while ( have_posts() ) {
// The post details
the_post();
// Display link
$author_link = the_author_meta(\'user_url\');
echo \'<p><a href="#\'. $author_link. \'"> Read More </a> </p>\';
} // end while
} // end if
?>
如果您在循环之外运行这个,那么您需要一个作者ID
<?
$author_link = the_author_meta(\'user_url\',\'id needed here\');
echo \'<p><a href="#\'. $author_link. \'"> Read More </a> </p>\';
?>
如果你知道你的作者ID
<?
$author_link = the_author_meta(\'user_url\',02);
echo \'<p><a href="#\'. $author_link. \'"> Read More </a> </p>\';
?>