Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Blaz K.

    (@blazk)

    Hi @tiotrom,

    I guess you could do something like this:

    
    $feedbacks = get_post_meta( get_the_id(), 'rmp_feedback_val_new', true );
    
    foreach( $feedbacks as $feedback ) {
      echo $feedback['feedback'];
      echo '<br />'; 
    }
    

    This will display all feedback for the current post.

    Blaz

    Thread Starter tiotrom

    (@tiotrom)

    Thank you very much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Make feedback messages public (as comments)’ is closed to new replies.