is_multi_author()
is_multi_author() 确定此网站是否有多个作者。Determines whether this …
is_multi_author()
确定此网站是否有多个作者。
Determines whether this site has more than one author.
目录锚点:#说明#返回#源码#笔记
说明(Description)
检查是否有多个作者发布了文章。
有关此主题函数和类似主题函数的更多信息,请参阅主题开发人员手册中的条件标记文章。
返回(Return)
(bool)我们是否有一个以上的作者
源码(Source)
/** * Does this site have more than one author * * Checks to see if more than one author has published posts. * * @since 3.2.0 * * @global wpdb $wpdb * * @return bool Whether or not we have more than one author */ function is_multi_author() { global $wpdb; if ( false === ( $is_multi_author = get_transient( 'is_multi_author' ) ) ) { $rows = (array) $wpdb->get_col("SELECT DISTINCT post_author FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'publish' LIMIT 2"); $is_multi_author = 1 < count(="" $rows="" )="" 1="" :="" 0;="" set_transient(="" 'is_multi_author',="" $is_multi_author="" );="" }="" *="" *="" filter="" whether="" the="" site="" has="" more="" than="" one="" author="" with="" published="" posts.="" *="" *="" @since="" 3.2.0="" *="" *="" @param="" bool="" $is_multi_author="" whether="" $is_multi_author="" should="" evaluate="" as="" true.="" */="" return="" apply_filters(="" 'is_multi_author',="" (bool)="" $is_multi_author="" );="" }="">
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
3.2.0 | wp-includes/author-template.php:543 | 0 | 5 |
笔记(Notes)
将body标记中的“group blog”类添加到具有1个以上已发布作者的博客。
类别:WordPress 函数手册、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!