我有一个多语言的网站设置:www.jeroenbrugman。com公司
主要的荷兰语版本使用Fluxus。在artwork页面上,我使用from函数输出了一个链接。php
function prefix_term_name($terms, $post_id, $taxonomy ) {
foreach ($terms as &$term) {
$term->name = \'Terug naar \'.$term->name;
}
}
return $terms;
在页面上,我使用以下内容显示:
<h3 class="widget-title">
<?php
add_filter( \'get_the_terms\',\'prefix_term_name\',10,3);
the_terms($post->ID, \'fluxus-project-type\');
remove_filter( \'get_the_terms\',\'prefix_term_name\',10,3); ?>
<a href="../"><?php the_terms($post->ID, \'fluxus-project-type\'); ?></a></h3>
但是,在我的英语页面上。我需要从主主题函数输出“Terug naar”。php为:“返回”。但当我从主要函数复制代码时。php到my child主题的函数。php和更改Terug naar以返回到整个英文站点将变为空白。
我做错了什么?
亲切的问候