我正在运行高级自定义字段Pro插件。当我为repeater字段实现以下代码时,我得到了以下PHP错误:
分析错误:语法错误,意外的T\\u常量\\u ENCAPSED\\u字符串,应为“,”或“;”
<?php
while ( have_posts() ) : the_post();
if( have_rows(\'logos\') ):
while ( have_rows(\'logos\') ) : the_row();
$image = wp_get_attachment_image_src( get_sub_field(\'brands\'), \'logo\' );
echo "<div class=\\"quarter\\">" "<img src=\\"" .$image[0]. "\\" alt=\\"Logo\\"></div>";
endwhile;
endif;
?>
<?php endwhile; ?>
我在这里转义的引号是否正确?我看不出错误。
我还尝试使用字符串而不是转义引号:
echo \'<div class="quarter">\' \'<img src="\' .$image[0]. \'" alt="Logo"></div>\';