Site is Now HTTPS Secure
The Dao of Dragon Ball is now secure with https (HyperText Transfer Protocol Secure).
This enables encrypted transmission of data between a website and its visitors.
You can see the site is secure by the padlock next to the URL of the site in your browser.
What does this mean for you?
- Secure financial transactions. So when you buy books and pay with a credit card or PayPal, your transferred data is safe. I do not keep your financial data on my server.
- Increased trust when filling out forms, such as when you contact me.
- Better search engine results, so more DBZ fans like you will find my content.
- Faster page loads.
The upgrade took an evening, but the benefits are now permanent, just like when Goku and Vegeta train hard and ascend to the next level!
//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.'; }