条件标签是一种布尔数据类型,可在模板文件中使用,以根据当前页面匹配的条件更改内容的显示。它们告诉 WordPress 在特定条件下显示什么代码。条件标签通常与 PHP if / else条件语句一起使用,并且与 WOrdPress模板层次结构密切相关。
警告:
您只能在设置WP_Query或使用action hook后使用条件查询标签。
is_front_page()
——判断是否是自定义首页;
is_home()
——判断是否是首页;
is_admin()
——判断当前页面是不是一个管理页面;
is_network_admin()
——当前请求是否针对网络管理接口;
is_admin_bar_showing()
——确定是否应显示管理栏;
is_single()
——判断是否为文章页;
is_sticky()
——判断是否是置顶文章;
is_post_type_hierarchical( $post_type )
is_post_type_archive()
is_comments_popup()
comments_open()
——判断是否允许评论;
pings_open()
is_page()
——判断是否是一个页面;
is_page_template()
——判断页面是否应用了某个页面模板;
is_category( $category )
is_tag()
is_tax()
has_term()
term_exists( $term, $taxonomy, $parent )
is_taxonomy_hierarchical( $taxonomy )
taxonomy_exists( $taxonomy )
is_author()
——判断是否是作者页;
is_date()
is_year()
is_month()
is_day()
is_time()
is_new_day()
is_archive()
is_search()
——判断是否是搜索页面;
is_404()
——判断是否是404页面;
is_paged()
——判断是否是分页而不是首页;
is_attachment()
——判断是否是附件页面;
wp_attachment_is_image( $post_id )
is_local_attachment( $url )
——验证附件是否存在并归属于本地;
is_singular()
——单个页面、单篇文章、附件或任何其他自定义帖子类型;
post_type_exists( $post_type )
is_main_query()
is_new_day()
is_feed()
is_trackback()
is_preview()
in_the_loop()
is_dynamic_sidebar()
is_active_sidebar()
is_active_widget( $widget_callback, $widget_id )
is_blog_installed()
is_rtl()
is_multisite()
is_main_site()
is_super_admin()
is_user_logged_in()
email_exists( $email )
username_exists( $username )
is_plugin_active( $path )
is_plugin_inactive( $path )
is_plugin_active_for_network( $path )
is_plugin_page()
is_child_theme()
——判断是否应用了某个子主题;
current_theme_supports()
——检查主题是否已支持某项功能;
has_post_thumbnail( $post_id )
——判断是否包含缩略图;
wp_script_is( $handle, $list )
——判断一段脚本是否已经加入队列。