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();
}
?>
我知道上面的代碼是錯誤的,這就是爲什麼我問這個問題! :)
任何幫助將不勝感激。