【发布时间】:2014-01-14 17:39:17
【问题描述】:
这就是我在 wordpress 中调用我的内容的方式:
<?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();
}
?>
我知道上面的代码是错误的,这就是我问这个问题的原因! :)
我们将不胜感激。
【问题讨论】: