>

prefix . 'questions'; $questions = $wpdb->get_results( "SELECT * FROM $table_name ORDER BY create_date DESC" ); foreach ( $questions as $question ) { echo '

' . $question->question . '

'; echo '

' . $question->answer . '

'; } ?>