我收到此错误
"解析错误:语法错误,意外T_ECHO"
使用以下php代码。我检查了括号和引号,但我似乎无法找到它。
<?php
if(!$_GET['ae']):
_e('<a href="'.echo get_permalink(icl_object_id(9132, 'page', true)).'" class="row">foo</a>');
endif;
?>
答案 0 :(得分:3)
由于_e
函数已经回事,所以不需要额外的echo
<?php
if(!$_GET['ae']):
_e('<a href="'.get_permalink(icl_object_id(9132, 'page', true)).'" class="row">foo</a>');
endif;
?>