File "site-logo.php"
Full Path: /home/bytebmoc/tideswithin.com/testimonials/site-logo.php
File size: 901 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace ElementorPro\Modules\DynamicTags\Tags;
use ElementorPro\Modules\DynamicTags\Tags\Base\Data_Tag;
use Elementor\Utils;
use ElementorPro\Modules\DynamicTags\Module;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
class Site_Logo extends Data_Tag {
public function get_name() {
return 'site-logo';
}
public function get_title() {
return esc_html__( 'Site Logo', 'elementor-pro' );
}
public function get_group() {
return Module::SITE_GROUP;
}
public function get_categories() {
return [ Module::IMAGE_CATEGORY ];
}
public function get_value( array $options = [] ) {
$custom_logo_id = get_theme_mod( 'custom_logo' );
if ( $custom_logo_id ) {
$url = wp_get_attachment_image_src( $custom_logo_id, 'full' )[0];
} else {
$url = Utils::get_placeholder_image_src();
}
return [
'id' => $custom_logo_id,
'url' => $url,
];
}
}