菜鸟站长
个人博客主题模板、应用插件、功能开发技术资源聚合分享网站

公告:菜鸟站长每天为大家更新各种主题插件、实用技术教程、优秀博客推荐等、记得每天都要访问我们的网站、让你的网站 / 博客更加精彩!

wordpress 文章中的条件判断

发布者:菜鸟站长  发布日期:2023-12-29  更新日期:2023-12-29  人气指数:424

下面的例子讲述了当用户访问一篇文章的时候如何使用 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();  
}  
本文检索关键词:WordPress教程

菜鸟站长推荐插件




添加新评论 »

icon_mrgreen.pngicon_neutral.pngicon_twisted.pngicon_arrow.pngicon_eek.pngicon_smile.pngicon_confused.pngicon_cool.pngicon_evil.pngicon_biggrin.pngicon_idea.pngicon_redface.pngicon_razz.pngicon_rolleyes.pngicon_wink.pngicon_cry.pngicon_surprised.pngicon_lol.pngicon_mad.pngicon_sad.pngicon_exclaim.pngicon_question.png