bbp_redirect_canonical (字符串redirect_url美元)
删除规范重定向以允许漂亮的分页
描述
参数
- redirect_url美元
-
(字符串)(必需)重定向url
返回
(bool |字符串)如果它是一个主题/论坛和他们的首页,False,否则重定向url
源
文件:bp-forums /核心/ theme-compat.php
函数bbp_redirect_canonical($redirect_url){全局$wp_rewrite;// Canonical is for the beautiful if ($wp_rewrite->using_permalinks()){//如果查看超过第1页的几个if (1 < bbp_get_pagage()){//只在单个主题…If (bbp_is_single_topic()) {$redirect_url = false;/ /……和单一的论坛…} elseif (bbp_is_single_forum()) {$redirect_url = false;/ /……和单回复……} elseif (bbp_is_single_reply()) {$redirect_url = false;/ /……and any single anything else... // // @todo - Find a more accurate way to disable paged canonicals for // paged shortcode usage within other posts. } elseif ( is_page() || is_singular() ) { $redirect_url = false; } // If editing a topic } elseif ( bbp_is_topic_edit() ) { $redirect_url = false; // If editing a reply } elseif ( bbp_is_reply_edit() ) { $redirect_url = false; } } return $redirect_url; }
更新日志
版本 | 描述 |
---|---|
bbPress (r2628) | 介绍了。 |