Notifications::the_actor_avatar( integer|string $size = 40 )
Description #
Echo actor avatar.
Parameters #
- $sizeinteger | string (Optional) Size of the avatar. Default value: 40
Source #
File: addons/notifications/query.php
public function the_actor_avatar( $size = 40 ) {
if ( ! $this->hide_actor() ) {
echo wp_kses_post( $this->actor_avatar( $size ) );
}
}
Expand full source code Collapse full source code View on GitHub: addons/notifications/query.php:302
Add your comment