Dragon Ball Z: Light of Hope Trailer
The Dragon Ball Z: Light of Hope trailer has arrived!
Enjoy!
We believe that this will bring a light of hope to Dragon Ball Z fans across the world.
I wrote the script for the series and for this trailer, so it’s exciting to see it in action.
You can read more about this live-action DBZ fan project.
If you’d like to contribute, then please lend us your genki at Robot Underdog’s IndieGoGo page.
What did you think?!
//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.'; }