bp_get_activity_content_body ()
返回活动内容体。
描述
返回
(字符串)活动内容体。
源
文件:bp-activity / bp-activity-template.php
函数bp_get_activity_content_body(){全局$ activit_template;//向后兼容性,如果不使用动作。If (empty($activities_template->activity->action) && !$ activit_template ->activity->content) {$ activit_template ->activity->content = bp_insert_activity_meta($ activit_template ->activity->content);} //如果activity内容中包含空字符,则将其删除,仅当(in_array($activities_template->activity->content, [' ', ''])) {$activities_template->activity->content = ";} /** *过滤活动内容体。* * @since BuddyPress 1.2.0 * * @param string $content内容主体。* @param object $activity activity对象。以引用的方式传递。*/返回apply_filters_ref_array('bp_get_activity_content_body', array($ activit_template ->activity->content, &$ activit_template ->activity)); }
更新日志
版本 | 描述 |
---|---|
BuddyPress 1.2.0 | 介绍了。 |