/**
 * Delete Attached list of media ids for the comment
 * 
 */
function mpp_comment_delete_attached_media_ids($comment_id)
{
    return mpp_delete_comment_meta($comment_id, '_mpp_attached_media_id');
}
Esempio n. 2
0
/**
 * Delete Associated Activity Id for a WordPress Comment
 * 
 * @param type $comment_id
 * @return type
 */
function mpp_comment_delete_associated_activity_id($comment_id)
{
    return mpp_delete_comment_meta($comment_id, '_mpp_activity_id');
}