0

stackoverflow 上的第一个问题:我想在 php 中转义 html,然后在 html php 中再次转义,并从 _e() 函数返回一个字符串。我不确定“术语”是否正确。所以情况是这样的:

return '...<span class="strike"></span><a class="read-more" href="'. 
get_permalink($post->ID) . '" title="'.get_the_title($post->ID).'">Read more</a>';

“阅读更多”应替换为

_e( 'Read more', 'mytheme' )

能够翻译这个词。

我什么都试过了。所有帮助表示赞赏。

4

1 回答 1

0

怎么样:

return '...<span class="strike"></span><a class="read-more" href="'. 
get_permalink($post->ID) . '" title="'.get_the_title($post->ID).'">'._e( 'Read more', 'mytheme' ).'</a>';
于 2012-09-19T09:13:53.437 回答