View file File name : author-profile-picture.php Content :<?php namespace ElementorPro\Modules\DynamicTags\Tags; use ElementorPro\Modules\DynamicTags\Tags\Base\Data_Tag; use ElementorPro\Core\Utils; use ElementorPro\Modules\DynamicTags\Module; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } class Author_Profile_Picture extends Data_Tag { public function get_name() { return 'author-profile-picture'; } public function get_title() { return esc_html__( 'Author Profile Picture', 'elementor-pro' ); } public function get_group() { return Module::AUTHOR_GROUP; } public function get_categories() { return [ Module::IMAGE_CATEGORY, Module::MEDIA_CATEGORY, ]; } public function get_value( array $options = [] ) { Utils::set_global_authordata(); return [ 'id' => '', 'url' => get_avatar_url( (int) get_the_author_meta( 'ID' ) ), ]; } }