代码之家  ›  专栏  ›  技术社区  ›  Alex Coulstring

试图修改此php代码“if”语句

  •  0
  • Alex Coulstring  · 技术社区  · 4 周前

    这是WordPress主题文件中的自定义代码 我正在尝试修改这个PHP代码“if”语句。第一部分检查页面是否为法语,否则将显示英语。然而,第二部分“立即申请”链接仅为英文。所以我需要像第一部分一样的“如果”语句。

    这是原始代码:

    echo '<main>';
    
            if (pll_current_language() == 'fr') {
              echo '<h4 class="category-title">Adhésion pour membres de l’industrie (catégorie B)</h4>';
            }
            else {
              echo '<h4 class="category-title">Industry Membership (Category B)</h4>';
            }
            echo '<p>' . $category_b_information . '</p>';
            if ($application_link_b) {
              echo '<a href="' . $application_link_b . '" class="button" target="_blank" rel="noopener">Apply Here</a>';
            }
    
          echo '</main>';
    
    
    

    这是我尝试过的,但我遇到了一个错误:

    echo '<main>';
    
    if (pll_current_language() == 'fr') {
      echo '<h4 class="category-title">Adhésion pour membres de l’industrie (catégorie B)</h4>';
    }
    else {
      echo '<h4 class="category-title">Industry Membership (Category B)</h4>';
    }
    
    if (pll_current_language() == 'fr') {
        echo '<p>' . $category_b_information . '</p>';
        if ($application_link_b) {
            echo '<a href="' . $application_link_b . '" class="button" target="_blank" rel="noopener">appliquer ici</a>';
        }
        else {
            echo '<p>' . $category_b_information . '</p>';
        if ($application_link_b) {
           echo '<a href="' . $application_link_b . '" class="button" target="_blank" rel="noopener">Apply Here</a>';
        }
    
    echo '</main>';
    
    1 回复  |  直到 4 周前
        1
  •  0
  •   LoicTheAztec    4 周前

    您的代码中有多个错误,请尝试以下操作:

    echo '<main>';
    
    if (pll_current_language() == 'fr') {
        echo '<h4 class="category-title">Adhésion pour membres de l’industrie (catégorie B)</h4>';
        echo '<p>' . $category_b_information . '</p>';
        if ($application_link_b) {
            echo '<a href="' . $application_link_b . '" class="button" target="_blank" rel="noopener">appliquer ici</a>';
        }
    }
    else {
        echo '<h4 class="category-title">Industry Membership (Category B)</h4>';
        echo '<p>' . $category_b_information . '</p>';
        if ($application_link_b) {
            echo '<a href="' . $application_link_b . '" class="button" target="_blank" rel="noopener">Apply Here</a>';
        }
    }
    echo '</main>';
    

    它应该起作用。