使用html在PHP中的拼写错误

时间:2012-12-27 09:56:03

标签: php

我猜这里有这个简单的错字问题。 我该如何解决?

<?php the_content("<br /> <span class='custom-more'>Read More: " . get_the_title('', '', false) "</span>"); ?>

我需要在WordPress中创建一个更多的按钮,我需要在span类中包含更多的读取。 我收到此错误消息:

Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in

我该如何解决这个问题?

由于

2 个答案:

答案 0 :(得分:1)

您错过了.函数与get_the_title

之间的并置运算符</span>
 <?
    php the_content("<br /> <span class='custom-more'>Read More: ".get_the_title('', '', false)."</span>"); 
 ?>

答案 1 :(得分:1)

您错过了concatenate (.)

正确的代码将是

 php the_content("<br /> <span class='custom-more'>Read More: ".get_the_title('', '', false)."</span>");