<?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
我该如何解决这个问题?
由于
答案 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>");