wordpress 文章中的条件判断
下面的例子讲述了当用户访问一篇文章的时候如何使用 is_single()
来显示一些特殊的内容。
if ( is_single() ) {
echo 'This is just one of many fabulous entries in the ' . single_cat_title() . ' category!';
}
下面的例子介绍了如何在主循环中使用 条件判断 语句。功能是在首页index
中显示文章的摘要,而在文章single
和主页home
中显示文章的正文内容。
if ( is_home() || is_single() ) {
the_content();
}
else {
the_excerpt();
}