我有这个片段Wordpress
:
<?php if ( is_user_logged_in() ) {
echo " <span class=blabla>
<a href="<?php echo home_url() . '/author/' . get_the_author_meta( 'user_login', wp_get_current_user()->ID ); ?>" >My personal page</a>
</span> "; } ?>
所以因为它有两个echo
,所以我使用了这个:
<?php if ( is_user_logged_in() ) {
echo " <span class=blabla>
<a href=\"home_url() . '/author/' . get_the_author_meta( 'user_login', wp_get_current_user()->ID ); \" >My personal page</a>
</span> "; } ?>
由于某种原因,它不起作用。我究竟做错了什么?