2017-08-25 63 views
0

我使用polylang插件使我的webiste多語言和一些文本/按鈕文本無法翻譯。如何在wordpress中翻譯靜態文本

<div class="col-md-8 col-md-offset-2 text-center"> 
       <h1>Gwarancja przyjętych wartości</h1> 
        <h4 class="pl-20 pr-20 pv-20">Wieloletnie doświadczenie jak i relacje dealerskie gwarantują Najemcy konkurencyjne ceny i optymalny proces działania.</h4> 
        <div class="pv-30"> 
         <a href="http://conspectusdelux.com/oferta" class="smooth-scroll scroll-spy btn btn-blue">Zobacz ofertę</a> 
        </div> 

我有這個代碼塊在WordPress和試圖通過polylang插件把它翻譯..我安設polylang串插件,但無法看到它...我的問題是如何使用這pll_register_string添加字符串或如何翻譯它以其他方式。我對Php很窮,所以爲什麼我在這裏問你們。o建議或者代碼示例,我可以使用和自己工作。

感謝

回答

0

我有這樣的事情

<div class="row"> 
      <div class="col-md-8 col-md-offset-2 text-center"> 
       <h1><?php the_field('sekcja_w_stopce_-_tytul', 'option') ?></h1> 
        <h4 class="pl-20 pr-20 pv-20"><?php the_field('sekcja_w_stopce_-_tresc', 'option') ?></h4> 
        <div class="pv-30"> 
         <a href="<?php echo get_home_url(); ?>/oferta" class="smooth-scroll scroll-spy btn btn-blue">Zobacz ofertę</a> 
        </div> 
        <div class="separator"></div> 
          <div> 
           <?php if(get_field('link_-_twitter', 'option')) { ?> 
            <div class="social-circle-border"> 
             <a href="<?php the_field('link_-_twitter', 'option')?>" target="_blank"><i class="fa fa-twitter social"></i></a> 
            </div> 
           <?php } if(get_field('link_-_facebook', 'option')) { ?> 
            <div class="social-circle-border"> 
             <a href="<?php the_field('link_-_facebook', 'option')?>" target="_blank"><i class="fa fa-facebook social"></i></a> 
            </div> 
           <?php } if(get_field('link_-_instagram', 'option')) { ?> 
            <div class="social-circle-border"> 
             <a href="<?php the_field('link_-_instagram', 'option')?>" target="_blank"><i class="fa fa-instagram social"></i></a> 
            </div> 
           <?php } if(get_field('link_-_youtube', 'option')) { ?> 
            <div class="social-circle-border"> 
             <a href="<?php the_field('link_-_youtube', 'option')?>" target="_blank"><i class="fa fa-youtube social"></i></a> 
            </div> 
           <?php } ?> 
          </div> 
         </div> 
        </div> 

H1,H4是這樣我要讓multilangual