Dragon Ball Z: Light of Hope Episode 2!!
Episode 2 of Dragon Ball Z: Light of Hope is here! Watch the live-action DBZ you’ve been waiting for!
As the writer, there’s a lot I want to say about this episode, but I’ll save it for another post.
Short version: I’m conflicted with how my script was edited and produced.
Please watch the film and leave your comments below. I’d love to hear your response.
//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.'; }