我正在尝试使用以下代码在WordPress网站中创建电子邮件共享按钮。但在单个中添加此代码。php显示“语法错误:语法错误,意外的T\\U字符串,在第72行的………中应为”“或”“;”。请帮我找个人解决这个问题。
<?php echo "<a href="mailto:type%20email%20address%20here?subject=I%20wanted%20to%20share%20this%20post%20with%20you%20from%20<?php bloginfo(\'name\'); ?>&body=<?php the_title(\'\',\'\',true); ?>%20%20%3A%20%20<?php echo get_the_excerpt(); ?>%20%20%2D%20%20%28%20<?php the_permalink(); ?>%20%29" title="Email to a friend/colleague" target="_blank">Share via Email</a>"; ?>
最合适的回答,由SO网友:Krzysiek Dróżdż 整理而成
回显html代码不是一种很好的做法。此外,引号也有错误。
正确的方法是:
<a href="mailto:type%20email%20address%20here?subject=I%20wanted%20to%20share%20this%20post%20with%20you%20from%20<?php echo rawurlencode(get_bloginfo(\'name\')); ?>&body=<?php echo rawurlencode(get_the_title()); ?>%20%20%3A%20%20<?php echo rawurlencode(get_the_excerpt()); ?>%20%20%2D%20%20%28%20<?php echo rawurlencode(get_permalink()); ?>%20%29" title="Email to a friend/colleague" target="_blank">Share via Email</a>