Wordpress Polylang 插件似乎没有翻译我的页脚小部件。所以我正在考虑为不同的语言创建单独的页脚,并通过我的子主题 functions.php 中的一个函数调用正确的页脚,该函数检查页面语言,如下所示:
function switch_footer_language() {
if(pll_current_language=='th') {
get_footer('footer_th.php');
} elseif(pll_current_language=='en') {
get_footer('footer_en.php');
}
}
这行得通吗?这是一个合适的方法吗?有没有更好的办法?如果是这样怎么办?
非常感谢。