这就是我在wordpress中调用我的内容的方式:
<?php
if ( is_singular() ) {
the_content();
} else {
the_excerpt();
}
?>
但是由于bbpress不支持the_excerpt()
,我也无法调用bbpress。现在我想添加另一个if else
或类似的东西来调用bbpress内容。
<?php
if ( is_singular() ) {
the_content();
} else {
the_excerpt();
}
ifelse ( is_bbpress() ) {
the_content();
}
?>
我知道上面的代码是错的,这就是我问这个问题的原因! :)
任何帮助将不胜感激。
答案 0 :(得分:1)
这是你在找什么?
<?php if ( is_singular() || is_bbPress() ) {
the_content();
} else {
the_excerpt();
} ?>
答案 1 :(得分:0)
我在这里找到了:
<?php
if ( is_singular() ) {
the_content();
}
elseif ( is_bbpress() ) {
the_content();
}
else {
the_excerpt();
}
?>