xclusive_author_bio_avatar_size

Description

The “xclusive_author_bio_avatar_size” filter allows to modify the author avatar size. Version 1.1.0+.

A plugin (or theme) can add a filter with the code:

<?php add_filter( 'xclusive_author_bio_avatar_size', 'filter_function_name' ); ?>

The hook is located in the author-bio.php and author.php files.

Example

// apply filter
function filter_xclusive_author_bio_avatar_size( $size ) {
	return 90;
}
add_filter('xclusive_author_bio_avatar_size', 'filter_xclusive_author_bio_avatar_size');

Note: $size is an integer.


Leave a Reply

Your email address will not be published. Required fields are marked *