Forum Replies Created

Viewing 1 replies (of 1 total)
  • Hi ,

    function EditCommentsColumnsHeader($columns) {
    $columns[‘myorg’] = __(‘Org’);
    return $columns;
    }

    add_filter( ‘manage_comments_column’, ‘EditCommentsColumnsHeader’ );

    function EditCommentsColumnsRow($columnTitle, $comment_ID){
    if($columnTitle == ‘Org’){
    echo $myorg;
    }
    }

    add_filter( ‘manage_comments_custom_column’, ‘EditCommentsColumnsRow’, 10, 2 );

    this code is not working.

    i want to add custom fields on Comment management screen of admin panel and also want to add more fields on edit comment screen after Editor. but unfortunately i cant found any plugin or any action in word press which allow me to do this.

    any one know how it possible?

    many thanks
    JIGAR

Viewing 1 replies (of 1 total)