前端用户(博主)打开和关闭他的评论 时间:2014-08-13 作者:valentin 我有一个wordpress网站,有很多用户,每个人都有自己的评论页面。我想在前端为用户实现一个复选框,以打开(切换)和关闭评论。我知道我可以从后端为每个用户页面单独完成这项工作,但我需要让他们自己选择。换句话说。。。。是否可以(从管理面板)克隆该复选框,并在前端(用户页面)使用相同的功能?我能知道如何实现这一点吗?对此,我将不胜感激。谢谢 1 个回复 SO网友:Franko 你应该这样做//For update a page when use costum template $post = get_the_ID(); $my_post = array( \'ID\' => $post, \'comment_status\' => \'open\' // closed ); // Update the post into the database wp_update_post( $my_post ); 结束 文章导航