bp_get_request ()

用于处理主题端GET请求的主要操作。

描述

文件:bp-core / bp-core-dependency.php

function bp_get_request(){//如果不是POST操作,则保释。如果(!Bp_is_get_request()){返回;} //如果没有动作就退出。if (empty($_GET['action'])) {return;} //清理GET操作。$action = sanitize_key($_GET['action']);/** *在bp_get_request函数的末尾触发。* *这个动态动作可能是你想要使用的。它缩小了“动作”的范围,而不需要在函数中检查它。 * * @since BuddyPress 1.9.0 */ do_action( 'bp_get_request_' . $action ); /** * Fires at the end of the bp_get_request function. * * Use this static action if you don't mind checking the 'action' yourself. * * @since BuddyPress 1.9.0 * * @param string $action The action being run. */ do_action( 'bp_get_request', $action ); }

更新日志

更新日志
版本 描述
BuddyPress 1.9.0 介绍了。

问题吗?

我们总是很乐意帮助您解决代码或其他问题!搜索我们的开发人员文档联络支持,或与我们联系销售团队