Dragon Ball Z: Saiyan Saga Preview
The new Dragon Ball Z: Saiyan Saga preview trailer has premiered!
This is the start of a 6-episode live-action web-series made by K&K Productions.
They are seeking funding on IndieGogo in order to create the 6 episodes, and they need your help!
http://youtu.be/7SVIqXdCPug
If you’d like to see more live-action Dragon Ball Z, then be sure to contribute.
Enjoy the preview!
//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.'; }