bbp_get_topic_edit_link (混合args美元='')
返回主题的编辑链接
描述
参数
- args美元
-
(混合)(可选)该函数支持以下参数:主题id - link_before:在链接之前- link_after:在链接之后- edit_text:编辑文本
默认值:“
返回
(字符串)主题编辑链接
源
文件:bp-forums /主题/ template.php
$r = bbp_parse_args($args, array('id' => 0, 'link_before' => ", 'link_after' => ", 'edit_text' => esc_html__('Edit', 'buddyboss')), 'get_topic_edit_link');主题= bbp_get_topic美元(bbp_get_topic_id ((int) $ r [' id ']));/ /旁路检查如果用户帽(! current_user_can (edit_others_topics ' ) ) { // 用户不能编辑或过去锁时间如果(空(主题)美元| | ! current_user_can (edit_topic,主题- > ID) | | bbp_past_edit_lock(主题- > post_date_gmt)){返回;}} / /获取uri uri = bbp_get_topic_edit_url美元($ r(“id”));//保释如果没有uri if (empty($uri))返回;$retval = $r['link_before']。< a href = "。Esc_url ($uri)。”class = " bbp-topic-edit-link“>”。$ r(“edit_text”)。 '' . $r['link_after']; return apply_filters( 'bbp_get_topic_edit_link', $retval, $r ); }
更新日志
版本 | 描述 |
---|---|
bbPress (r2727) | 介绍了。 |