我在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();
}
?>我知道上面的代码是错误的,这就是为什么我要问这个问题!:)
任何帮助都将不胜感激。
发布于 2014-01-14 09:39:17
这就是你要找的吗?
<?php if ( is_singular() || is_bbPress() ) {
the_content();
} else {
the_excerpt();
} ?>发布于 2014-01-14 09:21:27
我在这里找到它:
<?php
if ( is_singular() ) {
the_content();
}
elseif ( is_bbpress() ) {
the_content();
}
else {
the_excerpt();
}
?>https://stackoverflow.com/questions/21109670
复制相似问题