Php conditional help needed

时间:2014-04-25 作者:user50812

我正在尝试添加作者身份的条件,以便在特定的作者id上显示帖子。如果有人能快速查看以下内容,我将不胜感激

<?php if is_author (\'2\') AND ( is_single() ) {?>
<link rel="author" href="https://plus.google.com/**********"/>
<?php }?>

1 个回复
最合适的回答,由SO网友:vaibhav 整理而成

此帖子与phpso相关,您应该在stackoverflow中发布,但您是一个新用户。我会帮你的

<?php if (is_author(\'2\') && (is_single()) ) { ?>
<link rel="author" href="https://plus.google.com/**********"/>
<?php } ?>

结束