我如何将评论插件嵌入到我自己的网站?

时间:2016-02-27 作者:Sreng Pagna

我正在寻找一种嵌入WordPress的方法comment formwatch.php 以允许用户对特定视频进行评论。你能告诉我怎么做吗?

Eaxample

2 个回复
最合适的回答,由SO网友:jgraup 整理而成

查看渲染comment_form. 您可以在页面模板中的任何位置呈现它,有很多方法可以自定义它。

$comments_args = array (
    // change the title of send button
    \'label_submit\'        => \'Send\',
    // change the title of the reply section
    \'title_reply\'         => \'Leave Your Comment\',
    // remove "Text or HTML to be displayed after the set of comment fields"
    \'comment_notes_after\' => \'\',
    // redefine your own textarea (the comment body)
    \'comment_field\'       => \'<p class="comment-form-comment"><label for="comment">\' . _x( \'Comment\', \'noun\' ) . \'</label><br /><textarea id="comment" name="comment" aria-required="true"></textarea></p>\',
);

comment_form( $comments_args );

SO网友:Jouke Nienhuis

如果视频嵌入到普通帖子中,则在编辑或撰写帖子时,只需打开“在帖子下方留下评论”选项。你没看到吗?在页面顶部编辑帖子的右侧,可以单击“显示/隐藏选项”。检查注释。