Use of any code provided by Harmonic Design or HDPlugins.com is at your own risk. It is ALWAYS recommended to backup your site or files before modifying any code on your site. Copy Code
// Automatically place a "Retry quiz" button to quiz results
function hdq_add_retry_link_to_quiz_results($quiz)
{
?>
<p style="text-align: right;"><a href="<?php echo get_the_permalink(); ?>" id="hdq_retry_link">Retry Quiz</a></p>
<?php
}
add_action("hdq_results_after_content", "hdq_add_retry_link_to_quiz_results", 10, 1);