简体   繁体   English

网页中的Wordpress翻译词

[英]Wordpress translation words in a page

I want to translate the Happening, Upcoming and Expired words in the given link to my language. 我想将给定链接中的即将发生,即将发生和即将过期的字词翻译成我的语言。 But I cannot find a file which contains these words or events page in my pages. 但是我找不到页面中包含这些单词或事件页面的文件。 How can I find the source of these words? 我如何找到这些单词的来源?

balikesirkolej.com balikesirkolej.com

Since I don't have your theme source code to review. 由于我没有您的主题源代码需要审查。 You can do it with jQuery- 您可以使用jQuery-

<script>
    (function($) {
        $("a[href='#tab-happening']:contains('Happening')").text("Tab1 Headline");
        $("a[href='#tab-upcoming']:contains('Upcoming')").text("Tab2 Headline");
        $("a[href='#tab-expired']:contains('Expired')").text("Tab3 Headline");  
    })( jQuery );   
</script>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM