Dragon Ball Book Trailer Released
The Dao of Dragon Ball has an exciting new trailer!
Over the weekend I taught myself how to use Adobe After Effects, and with the help of a template and the creative inspiration of a new book cover, I crafted this video.
It’s a short teaser of what the book contains and why it might interest you, and I put a LOT of time into it (though the majority of that was spent with trial and error through After Effects and Flash), so I hope you guys dig it.
Feel free to check the trailer out on the home page or at YouTube for the full size version.
//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.'; }