Randomize questions
-
For anyone wanting to put quiz questions in a specific order, the developer recommends using the plugin Intuitive Custom Post Order. This does indeed work very well.
If, however, you would like to have the questions display in random order, just add the following code to your (child) theme’s
functions.phpfile:// randomize order of quiz questions function order_quiz_questions( $query ) { if ( $query->get( 'post_type', 'post_type_questionna' ) ) { $query->set( 'orderby', 'rand' ); } } add_action( 'pre_get_posts', 'order_quiz_questions' );
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Randomize questions’ is closed to new replies.