将php函数添加到字符串中

时间:2011-11-29 17:58:46

标签: php wordpress

我需要添加这个php函数:

<?php _e("[:en]Read more[:cy]Darllen Mwy"); ?>

到这个字符串:

$more = '<span class="excerpt-read-more"><a class="more-link" href="' . get_permalink() . '" title="' . the_title_attribute( 'echo=0' ) . '"><br />Read More &raquo;</a></span>';

顶级的php函数应该替换底部字符串的“Read More”位。

我在php上垃圾并且一直没有语法错误。

2 个答案:

答案 0 :(得分:0)

老实说,我不知道这是否是你要求的,但是:

$more = '<span class="excerpt-read-more"><a class="more-link" href="' . get_permalink() . '" title="' . the_title_attribute( 'echo=0' ) . '"><br />' . _e("[:en]Read more[:cy]Darllen Mqy") . ' &raquo;</a></span>';

似乎是你想要的......

答案 1 :(得分:0)

我想你想要这个:

$more = '<span class="excerpt-read-more"><a class="more-link" href="'
        . get_permalink()
        . '" title="'
        . the_title_attribute( 'echo=0' )
        . '"><br />'
        . _e("[:en]Read more[:cy]Darllen Mwy")
        . ' &raquo;</a></span>';

但说实话,你的问题不是很清楚你想要什么,所以这可能不会给你你想要的结果......