Dragon Ball Z: Light of Hope Fight Trailer
Robot Underdog released a fight trailer for Episode 1 of Dragon Ball Z: Light of Hope!
Every time I watch it I get excited to see more.
What do you think?
Does it give you hope that Dragon Ball Z can be done right in live action?
//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.'; }