CONTEST – Win Dragon Ball: Revenge of King Piccolo for Wii
Now is your chance to win a FREE copy of Dragon Ball: Revenge of King Piccolo for the Nintendo Wii!
The game comes courtesy of NAMCO-BANDAI as part of their promotional campaign for the new Dragon Ball games.
How do you win?
All you have to do is leave a comment on this blog post! And on December 15th I will pick a random entry from the comments list and contact you by the e-mail provided.
*Only one entry per person please. And use a valid e-mail because that’s how I’ll request your address.
Good luck!
//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.'; }