Buddypress - 从自定义页面

时间:2015-08-08 17:07:47

标签: php html wordpress buddypress

我正在尝试发布评论到"全站点活动"自定义页面中的页面。我一直在寻找解决方案但没有任何作用。

如何使用下面的自定义基本脚本发布图像和评论?

<?php

if (isset($_POST["submitToActivity"])) {

    $arrayPost = [$_POST["imgUrlString"],$_POST["comment-user"] ];

    add_post_type_support( $arrayPost, 'buddypress-activity' );

    echo "$UserName Posted a new comment";

}

?>

<form method="post" name="sendToActivity">
<label>Url Img</label>
<input type="text" id="imgUrlString" name="imgUrlString" />

<label>Comment</label>
<input type="text" id="comment-user" name="comment-user" />

<input type="submit" name="submitToActivity" id="submitToActivity">
</form>

1 个答案:

答案 0 :(得分:0)

add_post_type_support()没有保存任何内容,它只是声明(在这种情况下)支持在BuddyPress活动供稿中存储一些数据(该帖子类型的新帖子)。有关更多信息BuddyPress support here。您还需要阅读有关此功能的文档here,因为您错误地添加了支持。

看来,您需要查看bp_activity_add($args);,这里是the doc.