如何翻译“永久链接到”文本

时间:2014-01-02 作者:p.a.

我的主题包含以下内容以创建永久链接:

<h3><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
然而,我想翻译“永久链接到”文本。

我该怎么做?

非常感谢。

1 个回复
最合适的回答,由SO网友:LindaJeanne 整理而成

一种可能的方式:

<?php
$link_text = sprintf( 
                 __( \'Permanent link to %s\', \'youthemetextdomain\'),
                 get_the_title() ); ?>

<h3><a
    href=\'<?php the_permalink(); ?>\'
    title=\'<?php the_title_attribute(); ?>\'
><?php echo $link_text; ?></a></h3>
get\\u the\\u title()返回标题,而不是显示标题。双下划线函数是WordPress允许从主题或插件中提取字符串进行翻译的方式。

结束

相关推荐

Subpages Permalinks Issues

我的网站看起来像:Page-1 (page.php)。。。Subpage-1 (custom-collection.php; 自定义帖子类型)。。。。。。Filtering Output-Post (custom-collection-single.php)当我使用打开过滤输出帖子时/%postname% 对于permalinks,我得到404错误页。一些代码:custom-collection.php<?php $args = array( \'post_type\' => \'weine\