尝试
<?php
if ( !empty( array ( $curauth->facebook ) ) ||
!empty ( array ( $curauth->linkedin ) ) ||
!empty( array( $curauth->twitter ) ) )
{
echo \'echo me if any $curauth info exists\';
}
?>
注意:这可能只需要较少的行,我只是添加了额外的换行符,以避免出现水平滚动条
<小时>Update:
正在读取Author Templates 让我意识到$curauth
变量,例如。
$curauth = (get_query_var(\'author_name\')) ? get_user_by(\'slug\', get_query_var(\'author_name\')) : get_userdata(get_query_var(\'author\'));
您应该能够使用此选项:
<?php
if ( !empty ( $curauth->facebook ) ||
!empty ( $curauth->linkedin ) ||
!empty ( $curauth->twitter ) )
{
echo \'echo me if any $curauth info exists\';
}
?>