这个函数的访问被标记为私有。这意味着它不打算被插件或主题开发人员使用,只在其他核心功能。这里列出了它的完整性。
BP_REST_Members_Actions_Endpoint:: bp_rest_follow_stop_following (数组args美元)
停止跟随成员。
描述
参数
- args美元
-
(数组)(必需)使用leader_id和follower_id参数。
返回
(混合)
源
文件:bp-members /类/ class-bp-rest-members-actions-endpoint.php
Private function bp_rest_follow_stop_following($args) {if (bp_is_active('follow') && function_exists('bp_follow_stop_following')) {return bp_follow_stop_following($args);} elseif (function_exists('bp_stop_following')) {return bp_stop_following($args);}返回false;}