File "comments-url.php"
Full Path: /home/bytebmoc/tideswithin.com/testimonials/tags/comments-url.php
File size: 649 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace ElementorPro\Modules\DynamicTags\Tags;
use ElementorPro\Modules\DynamicTags\Tags\Base\Data_Tag;
use ElementorPro\Modules\DynamicTags\Module;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
class Comments_URL extends Data_Tag {
public function get_name() {
return 'comments-url';
}
public function get_title() {
return esc_html__( 'Comments URL', 'elementor-pro' );
}
public function get_group() {
return Module::COMMENTS_GROUP;
}
public function get_categories() {
return [ Module::URL_CATEGORY ];
}
public function get_value( array $options = [] ) {
return get_comments_link();
}
}