Suffering and Solution

Ignorance is suffering.
To remedy ignorance one desires knowledge.
One suffers to achieve knowledge.
Yet knowledge is complex and burdensome.
Truth without attachment is ease.
One lets go of the attachment to knowledge.
Free of suffering.
Filled with emptiness.



//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.'; }