Dragon Ball Z: Light of Hope Q & A

Have questions about the new Dragon Ball Z: Light of Hope web series?

The cast and crew have answers.

If you have another question, leave it in the comments below and I’ll answer it for you.

I wrote the script to the series and am in touch with the crew. So let ’em fly!



//Get only the approved comments $args = array( 'status' => 'approve' );// The comment Query $comments_query = new WP_Comment_Query; $comments = $comments_query->query( $args );// Comment Loop if ( $comments ) { foreach ( $comments as $comment ) { echo '

' . $comment->comment_content . '

'; } } else { echo 'No comments found.'; }