/
How do I change the Gravatar size
How do I change the Gravatar size
Use an add_filter
in your theme’s functions.php
file to adjust the Gravatar size.
add_filter( 'testimonials_widget_gravatar_size', 'my_testimonials_widget_gravatar_size' ); function my_testimonials_widget_gravatar_size( $size ) { $size = 120; return $size; }
Default Gravatar size is 96, maximum 512.
Related content
Follow How do I change the image size
Follow How do I change the image size
More like this
How do I customize my testimonial list and widget output
How do I customize my testimonial list and widget output
More like this
How do I apply custom CSS to a specific testimonial widget
How do I apply custom CSS to a specific testimonial widget
More like this
How do I customize my testimonial single output
How do I customize my testimonial single output
More like this
How do I change the ‘Next testimonial…’ text
How do I change the ‘Next testimonial…’ text
More like this
How to change testimonials layout
How to change testimonials layout
More like this