Skip to content

Instantly share code, notes, and snippets.

@hlashbrooke
Created February 19, 2014 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hlashbrooke/9092750 to your computer and use it in GitHub Desktop.
Save hlashbrooke/9092750 to your computer and use it in GitHub Desktop.
Sensei - Set a custom image size for a question image
<?php
add_filter( 'sensei_question_image_size', 'custom_sensei_question_image_size', 10, 2 );
function custom_sensei_question_image_size( $size, $question_id ) {
$size = 'large';
return $size;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment