2014-01-14 53 views
0

這是我叫我的內容在WordPress:WordPress的 - 如果bbPress的顯示the_content()

<?php 
    if (is_singular()) { 
    the_content(); 
    } else { 
    the_excerpt(); 
    } 
?> 

但這個我不能打電話的bbPress太bbPress的,因爲不支持the_excerpt()。現在我想添加另一個if else或類似的東西來調用bbpress內容。

<?php 
    if (is_singular()) { 
    the_content(); 
    } else { 
    the_excerpt(); 
    } 
    ifelse (is_bbpress()) { 
    the_content(); 
    } 
?> 

我知道上面的代碼是錯誤的,這就是爲什麼我問這個問題! :)

任何幫助將不勝感激。

回答

1

這是你在找什麼?

<?php if (is_singular() || is_bbPress()) { 
     the_content(); 
     } else { 
     the_excerpt(); 
} ?> 
0

我在這裏找到:

<?php 
    if (is_singular()) { 
    the_content(); 
    } 
    elseif (is_bbpress()) { 
    the_content(); 
    } 
    else { 
    the_excerpt(); 
    } 
?> 
相關問題