1607 lines
36 KiB
PHP
1607 lines
36 KiB
PHP
<?php
|
|
namespace ElementorPro\Modules\ThemeElements\Widgets;
|
|
|
|
use Elementor\Controls_Manager;
|
|
use Elementor\Core\Kits\Documents\Tabs\Global_Colors;
|
|
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
|
|
use Elementor\Group_Control_Box_Shadow;
|
|
use Elementor\Group_Control_Typography;
|
|
use Elementor\Utils;
|
|
use ElementorPro\Plugin;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
class Author_Box extends Base {
|
|
|
|
public function get_name() {
|
|
return 'author-box';
|
|
}
|
|
|
|
public function get_title() {
|
|
return esc_html__( 'Author Box', 'elementor-pro' );
|
|
}
|
|
|
|
public function get_icon() {
|
|
return 'eicon-person';
|
|
}
|
|
|
|
public function get_categories() {
|
|
return [
|
|
'theme-elements-single',
|
|
'theme-elements-archive',
|
|
];
|
|
}
|
|
|
|
public function get_keywords() {
|
|
return [ 'author', 'user', 'profile', 'biography', 'testimonial', 'avatar' ];
|
|
}
|
|
|
|
public function has_widget_inner_wrapper(): bool {
|
|
return ! Plugin::elementor()->experiments->is_feature_active( 'e_optimized_markup' );
|
|
}
|
|
|
|
/**
|
|
* Get style dependencies.
|
|
*
|
|
* Retrieve the list of style dependencies the widget requires.
|
|
*
|
|
* @since 3.24.0
|
|
* @access public
|
|
*
|
|
* @return array Widget style dependencies.
|
|
*/
|
|
public function get_style_depends(): array {
|
|
return [ 'widget-author-box' ];
|
|
}
|
|
|
|
protected function register_controls() {
|
|
$this->start_controls_section(
|
|
'section_author_info',
|
|
[
|
|
'label' => esc_html__( 'Author Info', 'elementor-pro' ),
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'source',
|
|
[
|
|
'label' => esc_html__( 'Source', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'default' => 'current',
|
|
'options' => [
|
|
'current' => esc_html__( 'Current Author', 'elementor-pro' ),
|
|
'custom' => esc_html__( 'Custom', 'elementor-pro' ),
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'show_avatar',
|
|
[
|
|
'label' => esc_html__( 'Profile Picture', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SWITCHER,
|
|
'prefix_class' => 'elementor-author-box--avatar-',
|
|
'label_on' => esc_html__( 'Show', 'elementor-pro' ),
|
|
'label_off' => esc_html__( 'Hide', 'elementor-pro' ),
|
|
'default' => 'yes',
|
|
'separator' => 'before',
|
|
'condition' => [
|
|
'source' => 'current',
|
|
],
|
|
'render_type' => 'template',
|
|
]
|
|
);
|
|
|
|
// Used by the WordPress `get_avatar_url()` function to set the image size.
|
|
$this->add_control(
|
|
'avatar_size',
|
|
[
|
|
'label' => esc_html__( 'Picture Size', 'elementor-pro' ),
|
|
'type' => Controls_Manager::NUMBER,
|
|
'default' => 300,
|
|
'condition' => [
|
|
'source' => 'current',
|
|
'show_avatar' => 'yes',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'author_avatar',
|
|
[
|
|
'label' => esc_html__( 'Profile Picture', 'elementor-pro' ),
|
|
'type' => Controls_Manager::MEDIA,
|
|
'default' => [
|
|
'url' => Utils::get_placeholder_image_src(),
|
|
],
|
|
'condition' => [
|
|
'source' => 'custom',
|
|
],
|
|
'separator' => 'before',
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'show_name',
|
|
[
|
|
'label' => esc_html__( 'Display Name', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SWITCHER,
|
|
'prefix_class' => 'elementor-author-box--name-',
|
|
'label_on' => esc_html__( 'Show', 'elementor-pro' ),
|
|
'label_off' => esc_html__( 'Hide', 'elementor-pro' ),
|
|
'default' => 'yes',
|
|
'condition' => [
|
|
'source' => 'current',
|
|
],
|
|
'render_type' => 'template',
|
|
'separator' => 'before',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'author_name',
|
|
[
|
|
'label' => esc_html__( 'Name', 'elementor-pro' ),
|
|
'type' => Controls_Manager::TEXT,
|
|
'default' => esc_html__( 'John Doe', 'elementor-pro' ),
|
|
'condition' => [
|
|
'source' => 'custom',
|
|
],
|
|
'separator' => 'before',
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
'ai' => [
|
|
'active' => false,
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'author_name_tag',
|
|
[
|
|
'label' => esc_html__( 'HTML Tag', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'options' => [
|
|
'h1' => 'H1',
|
|
'h2' => 'H2',
|
|
'h3' => 'H3',
|
|
'h4' => 'H4',
|
|
'h5' => 'H5',
|
|
'h6' => 'H6',
|
|
'div' => 'div',
|
|
'span' => 'span',
|
|
],
|
|
'default' => 'h4',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'link_to',
|
|
[
|
|
'label' => esc_html__( 'Link', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'options' => [
|
|
'' => esc_html__( 'None', 'elementor-pro' ),
|
|
'website' => esc_html__( 'Website', 'elementor-pro' ),
|
|
'posts_archive' => esc_html__( 'Posts Archive', 'elementor-pro' ),
|
|
],
|
|
'condition' => [
|
|
'source' => 'current',
|
|
],
|
|
'description' => esc_html__( 'Link for the Author Name and Image', 'elementor-pro' ),
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'show_biography',
|
|
[
|
|
'label' => esc_html__( 'Biography', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SWITCHER,
|
|
'prefix_class' => 'elementor-author-box--biography-',
|
|
'label_on' => esc_html__( 'Show', 'elementor-pro' ),
|
|
'label_off' => esc_html__( 'Hide', 'elementor-pro' ),
|
|
'default' => 'yes',
|
|
'condition' => [
|
|
'source' => 'current',
|
|
],
|
|
'render_type' => 'template',
|
|
'separator' => 'before',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'show_link',
|
|
[
|
|
'label' => esc_html__( 'Archive Button', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SWITCHER,
|
|
'prefix_class' => 'elementor-author-box--link-',
|
|
'label_on' => esc_html__( 'Show', 'elementor-pro' ),
|
|
'label_off' => esc_html__( 'Hide', 'elementor-pro' ),
|
|
'default' => 'no',
|
|
'condition' => [
|
|
'source' => 'current',
|
|
],
|
|
'render_type' => 'template',
|
|
'separator' => 'before',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'author_website',
|
|
[
|
|
'label' => esc_html__( 'Link', 'elementor-pro' ),
|
|
'type' => Controls_Manager::URL,
|
|
'condition' => [
|
|
'source' => 'custom',
|
|
],
|
|
'description' => esc_html__( 'Link for the Author Name and Image', 'elementor-pro' ),
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'author_bio',
|
|
[
|
|
'label' => esc_html__( 'Biography', 'elementor-pro' ),
|
|
'type' => Controls_Manager::TEXTAREA,
|
|
'default' => esc_html__( 'Lorem ipsum dolor sit amet consectetur adipiscing elit dolor', 'elementor-pro' ),
|
|
'rows' => 3,
|
|
'condition' => [
|
|
'source' => 'custom',
|
|
],
|
|
'separator' => 'before',
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'posts_url',
|
|
[
|
|
'label' => esc_html__( 'Archive Button', 'elementor-pro' ),
|
|
'type' => Controls_Manager::URL,
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
'condition' => [
|
|
'source' => 'custom',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'link_text',
|
|
[
|
|
'label' => esc_html__( 'Archive Text', 'elementor-pro' ),
|
|
'type' => Controls_Manager::TEXT,
|
|
'default' => esc_html__( 'All Posts', 'elementor-pro' ),
|
|
'dynamic' => [
|
|
'active' => true,
|
|
],
|
|
'ai' => [
|
|
'active' => false,
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'layout',
|
|
[
|
|
'label' => esc_html__( 'Layout', 'elementor-pro' ),
|
|
'type' => Controls_Manager::CHOOSE,
|
|
'options' => [
|
|
'left' => [
|
|
'title' => esc_html__( 'Left', 'elementor-pro' ),
|
|
'icon' => 'eicon-h-align-left',
|
|
],
|
|
'above' => [
|
|
'title' => esc_html__( 'Above', 'elementor-pro' ),
|
|
'icon' => 'eicon-v-align-top',
|
|
],
|
|
'right' => [
|
|
'title' => esc_html__( 'Right', 'elementor-pro' ),
|
|
'icon' => 'eicon-h-align-right',
|
|
],
|
|
],
|
|
'separator' => 'before',
|
|
'prefix_class' => 'elementor-author-box--layout-image-',
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'alignment',
|
|
[
|
|
'label' => esc_html__( 'Alignment', 'elementor-pro' ),
|
|
'type' => Controls_Manager::CHOOSE,
|
|
'options' => [
|
|
'left' => [
|
|
'title' => esc_html__( 'Left', 'elementor-pro' ),
|
|
'icon' => 'eicon-text-align-left',
|
|
],
|
|
'center' => [
|
|
'title' => esc_html__( 'Center', 'elementor-pro' ),
|
|
'icon' => 'eicon-text-align-center',
|
|
],
|
|
'right' => [
|
|
'title' => esc_html__( 'Right', 'elementor-pro' ),
|
|
'icon' => 'eicon-text-align-right',
|
|
],
|
|
],
|
|
'prefix_class' => 'elementor-author-box--align-',
|
|
]
|
|
);
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'section_image_style',
|
|
[
|
|
'label' => esc_html__( 'Image', 'elementor-pro' ),
|
|
'tab' => Controls_Manager::TAB_STYLE,
|
|
'conditions' => [
|
|
'relation' => 'or',
|
|
'terms' => [
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'current',
|
|
],
|
|
[
|
|
'name' => 'show_avatar',
|
|
'operator' => '===',
|
|
'value' => 'yes',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'custom',
|
|
],
|
|
[
|
|
'name' => 'author_avatar[url]',
|
|
'operator' => '!==',
|
|
'value' => '',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'image_vertical_align',
|
|
[
|
|
'label' => esc_html__( 'Vertical Align', 'elementor-pro' ),
|
|
'type' => Controls_Manager::CHOOSE,
|
|
'options' => [
|
|
'top' => [
|
|
'title' => esc_html__( 'Top', 'elementor-pro' ),
|
|
'icon' => 'eicon-v-align-top',
|
|
],
|
|
'middle' => [
|
|
'title' => esc_html__( 'Middle', 'elementor-pro' ),
|
|
'icon' => 'eicon-v-align-middle',
|
|
],
|
|
],
|
|
'prefix_class' => 'elementor-author-box--image-valign-',
|
|
'conditions' => [
|
|
'relation' => 'or',
|
|
'terms' => [
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'current',
|
|
],
|
|
[
|
|
'name' => 'show_avatar',
|
|
'operator' => '===',
|
|
'value' => 'yes',
|
|
],
|
|
[
|
|
'name' => 'layout',
|
|
'operator' => '!==',
|
|
'value' => 'above',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'custom',
|
|
],
|
|
[
|
|
'name' => 'author_avatar[url]',
|
|
'operator' => '!==',
|
|
'value' => '',
|
|
],
|
|
[
|
|
'name' => 'layout',
|
|
'operator' => '!==',
|
|
'value' => 'above',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'image_size',
|
|
[
|
|
'label' => esc_html__( 'Image Size', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 200,
|
|
],
|
|
'em' => [
|
|
'max' => 20,
|
|
],
|
|
'rem' => [
|
|
'max' => 20,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-author-box__avatar img' => 'width: {{SIZE}}{{UNIT}}; height: {{SIZE}}{{UNIT}}',
|
|
],
|
|
'conditions' => [
|
|
'relation' => 'or',
|
|
'terms' => [
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'current',
|
|
],
|
|
[
|
|
'name' => 'show_avatar',
|
|
'operator' => '===',
|
|
'value' => 'yes',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'custom',
|
|
],
|
|
[
|
|
'name' => 'author_avatar[url]',
|
|
'operator' => '!==',
|
|
'value' => '',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'image_gap',
|
|
[
|
|
'label' => esc_html__( 'Gap', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 100,
|
|
],
|
|
'em' => [
|
|
'max' => 10,
|
|
],
|
|
'rem' => [
|
|
'max' => 10,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'body.rtl {{WRAPPER}}.elementor-author-box--layout-image-left .elementor-author-box__avatar,
|
|
body:not(.rtl) {{WRAPPER}}:not(.elementor-author-box--layout-image-above) .elementor-author-box__avatar' => 'margin-right: {{SIZE}}{{UNIT}}; margin-left: 0;',
|
|
|
|
'body:not(.rtl) {{WRAPPER}}.elementor-author-box--layout-image-right .elementor-author-box__avatar,
|
|
body.rtl {{WRAPPER}}:not(.elementor-author-box--layout-image-above) .elementor-author-box__avatar' => 'margin-left: {{SIZE}}{{UNIT}}; margin-right:0;',
|
|
|
|
'{{WRAPPER}}.elementor-author-box--layout-image-above .elementor-author-box__avatar' => 'margin-bottom: {{SIZE}}{{UNIT}}',
|
|
],
|
|
'conditions' => [
|
|
'relation' => 'or',
|
|
'terms' => [
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'current',
|
|
],
|
|
[
|
|
'name' => 'show_avatar',
|
|
'operator' => '===',
|
|
'value' => 'yes',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'custom',
|
|
],
|
|
[
|
|
'name' => 'author_avatar[url]',
|
|
'operator' => '!==',
|
|
'value' => '',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'image_border',
|
|
[
|
|
'label' => esc_html__( 'Border', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SWITCHER,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-author-box__avatar img' => 'border-style: solid',
|
|
],
|
|
'conditions' => [
|
|
'relation' => 'or',
|
|
'terms' => [
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'current',
|
|
],
|
|
[
|
|
'name' => 'show_avatar',
|
|
'operator' => '===',
|
|
'value' => 'yes',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'custom',
|
|
],
|
|
[
|
|
'name' => 'author_avatar[url]',
|
|
'operator' => '!==',
|
|
'value' => '',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'image_border_color',
|
|
[
|
|
'label' => esc_html__( 'Border Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'default' => '#000',
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-author-box__avatar img' => 'border-color: {{VALUE}}',
|
|
],
|
|
'conditions' => [
|
|
'relation' => 'or',
|
|
'terms' => [
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'current',
|
|
],
|
|
[
|
|
'name' => 'show_avatar',
|
|
'operator' => '===',
|
|
'value' => 'yes',
|
|
],
|
|
[
|
|
'name' => 'image_border',
|
|
'operator' => '===',
|
|
'value' => 'yes',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'custom',
|
|
],
|
|
[
|
|
'name' => 'author_avatar[url]',
|
|
'operator' => '!==',
|
|
'value' => '',
|
|
],
|
|
[
|
|
'name' => 'image_border',
|
|
'operator' => '===',
|
|
'value' => 'yes',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'image_border_width',
|
|
[
|
|
'label' => esc_html__( 'Border Width', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', '%', 'em', 'rem', 'vw', 'custom' ],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 20,
|
|
],
|
|
'em' => [
|
|
'max' => 2,
|
|
],
|
|
'rem' => [
|
|
'max' => 2,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-author-box__avatar img' => 'border-width: {{SIZE}}{{UNIT}}',
|
|
],
|
|
'conditions' => [
|
|
'relation' => 'or',
|
|
'terms' => [
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'current',
|
|
],
|
|
[
|
|
'name' => 'show_avatar',
|
|
'operator' => '===',
|
|
'value' => 'yes',
|
|
],
|
|
[
|
|
'name' => 'image_border',
|
|
'operator' => '===',
|
|
'value' => 'yes',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'custom',
|
|
],
|
|
[
|
|
'name' => 'author_avatar[url]',
|
|
'operator' => '!==',
|
|
'value' => '',
|
|
],
|
|
[
|
|
'name' => 'image_border',
|
|
'operator' => '===',
|
|
'value' => 'yes',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'image_border_radius',
|
|
[
|
|
'label' => esc_html__( 'Border Radius', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', '%', 'em', 'rem', 'custom' ],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-author-box__avatar img' => 'border-radius: {{SIZE}}{{UNIT}}',
|
|
],
|
|
'conditions' => [
|
|
'relation' => 'or',
|
|
'terms' => [
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'current',
|
|
],
|
|
[
|
|
'name' => 'show_avatar',
|
|
'operator' => '===',
|
|
'value' => 'yes',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'custom',
|
|
],
|
|
[
|
|
'name' => 'author_avatar[url]',
|
|
'operator' => '!==',
|
|
'value' => '',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Box_Shadow::get_type(),
|
|
[
|
|
'name' => 'input_box_shadow',
|
|
'selector' => '{{WRAPPER}} .elementor-author-box__avatar img',
|
|
'fields_options' => [
|
|
'box_shadow_type' => [
|
|
'separator' => 'default',
|
|
],
|
|
],
|
|
'conditions' => [
|
|
'relation' => 'or',
|
|
'terms' => [
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'current',
|
|
],
|
|
[
|
|
'name' => 'show_avatar',
|
|
'operator' => '===',
|
|
'value' => 'yes',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'custom',
|
|
],
|
|
[
|
|
'name' => 'author_avatar[url]',
|
|
'operator' => '!==',
|
|
'value' => '',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'section_text_style',
|
|
[
|
|
'label' => esc_html__( 'Author', 'elementor-pro' ),
|
|
'tab' => Controls_Manager::TAB_STYLE,
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'heading_name_style',
|
|
[
|
|
'label' => esc_html__( 'Name', 'elementor-pro' ),
|
|
'type' => Controls_Manager::HEADING,
|
|
'separator' => 'before',
|
|
'conditions' => [
|
|
'relation' => 'or',
|
|
'terms' => [
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'current',
|
|
],
|
|
[
|
|
'name' => 'show_name',
|
|
'operator' => '===',
|
|
'value' => 'yes',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'custom',
|
|
],
|
|
[
|
|
'name' => 'author_name',
|
|
'operator' => '!==',
|
|
'value' => '',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'name_color',
|
|
[
|
|
'label' => esc_html__( 'Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'global' => [
|
|
'default' => Global_Colors::COLOR_SECONDARY,
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-author-box__name' => 'color: {{VALUE}}',
|
|
],
|
|
'conditions' => [
|
|
'relation' => 'or',
|
|
'terms' => [
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'current',
|
|
],
|
|
[
|
|
'name' => 'show_name',
|
|
'operator' => '===',
|
|
'value' => 'yes',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'custom',
|
|
],
|
|
[
|
|
'name' => 'author_name',
|
|
'operator' => '!==',
|
|
'value' => '',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Typography::get_type(),
|
|
[
|
|
'name' => 'name_typography',
|
|
'selector' => '{{WRAPPER}} .elementor-author-box__name',
|
|
'global' => [
|
|
'default' => Global_Typography::TYPOGRAPHY_PRIMARY,
|
|
],
|
|
'conditions' => [
|
|
'relation' => 'or',
|
|
'terms' => [
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'current',
|
|
],
|
|
[
|
|
'name' => 'show_name',
|
|
'operator' => '===',
|
|
'value' => 'yes',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'custom',
|
|
],
|
|
[
|
|
'name' => 'author_name',
|
|
'operator' => '!==',
|
|
'value' => '',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'name_gap',
|
|
[
|
|
'label' => esc_html__( 'Gap', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 100,
|
|
],
|
|
'em' => [
|
|
'max' => 10,
|
|
],
|
|
'rem' => [
|
|
'max' => 10,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-author-box__name' => 'margin-bottom: {{SIZE}}{{UNIT}}',
|
|
],
|
|
'conditions' => [
|
|
'relation' => 'or',
|
|
'terms' => [
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'current',
|
|
],
|
|
[
|
|
'name' => 'show_name',
|
|
'operator' => '===',
|
|
'value' => 'yes',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'custom',
|
|
],
|
|
[
|
|
'name' => 'author_name',
|
|
'operator' => '!==',
|
|
'value' => '',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'heading_bio_style',
|
|
[
|
|
'label' => esc_html__( 'Biography', 'elementor-pro' ),
|
|
'type' => Controls_Manager::HEADING,
|
|
'separator' => 'before',
|
|
'conditions' => [
|
|
'relation' => 'or',
|
|
'terms' => [
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'current',
|
|
],
|
|
[
|
|
'name' => 'show_biography',
|
|
'operator' => '===',
|
|
'value' => 'yes',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'custom',
|
|
],
|
|
[
|
|
'name' => 'author_bio',
|
|
'operator' => '!==',
|
|
'value' => '',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'bio_color',
|
|
[
|
|
'label' => esc_html__( 'Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'global' => [
|
|
'default' => Global_Colors::COLOR_TEXT,
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-author-box__bio' => 'color: {{VALUE}}',
|
|
],
|
|
'conditions' => [
|
|
'relation' => 'or',
|
|
'terms' => [
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'current',
|
|
],
|
|
[
|
|
'name' => 'show_biography',
|
|
'operator' => '===',
|
|
'value' => 'yes',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'custom',
|
|
],
|
|
[
|
|
'name' => 'author_bio',
|
|
'operator' => '!==',
|
|
'value' => '',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Typography::get_type(),
|
|
[
|
|
'name' => 'bio_typography',
|
|
'selector' => '{{WRAPPER}} .elementor-author-box__bio',
|
|
'global' => [
|
|
'default' => Global_Typography::TYPOGRAPHY_TEXT,
|
|
],
|
|
'conditions' => [
|
|
'relation' => 'or',
|
|
'terms' => [
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'current',
|
|
],
|
|
[
|
|
'name' => 'show_biography',
|
|
'operator' => '===',
|
|
'value' => 'yes',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'custom',
|
|
],
|
|
[
|
|
'name' => 'author_bio',
|
|
'operator' => '!==',
|
|
'value' => '',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'bio_gap',
|
|
[
|
|
'label' => esc_html__( 'Gap', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', 'em', 'rem', 'custom' ],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 100,
|
|
],
|
|
'em' => [
|
|
'max' => 10,
|
|
],
|
|
'rem' => [
|
|
'max' => 10,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-author-box__bio' => 'margin-bottom: {{SIZE}}{{UNIT}}',
|
|
],
|
|
'conditions' => [
|
|
'relation' => 'or',
|
|
'terms' => [
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'current',
|
|
],
|
|
[
|
|
'name' => 'show_biography',
|
|
'operator' => '===',
|
|
'value' => 'yes',
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'relation' => 'and',
|
|
'terms' => [
|
|
[
|
|
'name' => 'source',
|
|
'operator' => '===',
|
|
'value' => 'custom',
|
|
],
|
|
[
|
|
'name' => 'author_bio',
|
|
'operator' => '!==',
|
|
'value' => '',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'section_style_button',
|
|
[
|
|
'label' => 'Button',
|
|
'tab' => Controls_Manager::TAB_STYLE,
|
|
'condition' => [
|
|
'link_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->start_controls_tabs( 'tabs_button_style' );
|
|
|
|
$this->start_controls_tab(
|
|
'tab_button_normal',
|
|
[
|
|
'label' => esc_html__( 'Normal', 'elementor-pro' ),
|
|
'condition' => [
|
|
'link_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_text_color',
|
|
[
|
|
'label' => esc_html__( 'Text Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'global' => [
|
|
'default' => Global_Colors::COLOR_SECONDARY,
|
|
],
|
|
'default' => '',
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-author-box__button' => 'color: {{VALUE}}; border-color: {{VALUE}}',
|
|
],
|
|
'condition' => [
|
|
'link_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_background_color',
|
|
[
|
|
'label' => esc_html__( 'Background Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-author-box__button' => 'background-color: {{VALUE}}',
|
|
],
|
|
'condition' => [
|
|
'link_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_group_control(
|
|
Group_Control_Typography::get_type(),
|
|
[
|
|
'name' => 'button_typography',
|
|
'global' => [
|
|
'default' => Global_Typography::TYPOGRAPHY_ACCENT,
|
|
],
|
|
'selector' => '{{WRAPPER}} .elementor-author-box__button',
|
|
'condition' => [
|
|
'link_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_tab();
|
|
|
|
$this->start_controls_tab(
|
|
'tab_button_hover',
|
|
[
|
|
'label' => esc_html__( 'Hover', 'elementor-pro' ),
|
|
'condition' => [
|
|
'link_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_hover_color',
|
|
[
|
|
'label' => esc_html__( 'Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'global' => [
|
|
'default' => Global_Colors::COLOR_SECONDARY,
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-author-box__button:hover' => 'border-color: {{VALUE}}; color: {{VALUE}};',
|
|
],
|
|
'condition' => [
|
|
'link_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_background_hover_color',
|
|
[
|
|
'label' => esc_html__( 'Background Color', 'elementor-pro' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-author-box__button:hover' => 'background-color: {{VALUE}};',
|
|
],
|
|
'condition' => [
|
|
'link_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_hover_transition_duration',
|
|
[
|
|
'label' => esc_html__( 'Transition Duration', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 's', 'ms', 'custom' ],
|
|
'default' => [
|
|
'unit' => 'ms',
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-author-box__button' => 'transition-duration: {{SIZE}}{{UNIT}}',
|
|
],
|
|
'condition' => [
|
|
'link_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_hover_animation',
|
|
[
|
|
'label' => esc_html__( 'Animation', 'elementor-pro' ),
|
|
'type' => Controls_Manager::HOVER_ANIMATION,
|
|
'condition' => [
|
|
'link_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_tab();
|
|
|
|
$this->end_controls_tabs();
|
|
|
|
$this->add_control(
|
|
'button_border_width',
|
|
[
|
|
'label' => esc_html__( 'Border Width', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', '%', 'em', 'rem', 'vw', 'custom' ],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 20,
|
|
],
|
|
'em' => [
|
|
'max' => 2,
|
|
],
|
|
'rem' => [
|
|
'max' => 2,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-author-box__button' => 'border-width: {{SIZE}}{{UNIT}};',
|
|
],
|
|
'separator' => 'before',
|
|
'condition' => [
|
|
'link_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_border_radius',
|
|
[
|
|
'label' => esc_html__( 'Border Radius', 'elementor-pro' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => [ 'px', '%', 'em', 'rem', 'custom' ],
|
|
'range' => [
|
|
'px' => [
|
|
'max' => 100,
|
|
],
|
|
'em' => [
|
|
'max' => 10,
|
|
],
|
|
'rem' => [
|
|
'max' => 10,
|
|
],
|
|
],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-author-box__button' => 'border-radius: {{SIZE}}{{UNIT}};',
|
|
],
|
|
'separator' => 'after',
|
|
'condition' => [
|
|
'link_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->add_control(
|
|
'button_text_padding',
|
|
[
|
|
'label' => esc_html__( 'Padding', 'elementor-pro' ),
|
|
'type' => Controls_Manager::DIMENSIONS,
|
|
'size_units' => [ 'px', '%', 'em', 'rem', 'vw', 'custom' ],
|
|
'selectors' => [
|
|
'{{WRAPPER}} .elementor-author-box__button' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
|
],
|
|
'separator' => 'before',
|
|
'condition' => [
|
|
'link_text!' => '',
|
|
],
|
|
]
|
|
);
|
|
|
|
$this->end_controls_section();
|
|
}
|
|
|
|
protected function render() {
|
|
$settings = $this->get_settings_for_display();
|
|
$author = [];
|
|
$link_tag = 'div';
|
|
$link_url = '';
|
|
$link_target = '';
|
|
$author_name_tag = Utils::validate_html_tag( $settings['author_name_tag'] );
|
|
|
|
$custom_src = ( 'custom' === $settings['source'] );
|
|
|
|
if ( 'current' === $settings['source'] ) {
|
|
|
|
$avatar_args['size'] = $settings['avatar_size'];
|
|
|
|
$user_id = get_the_author_meta( 'ID' );
|
|
$author['avatar'] = get_avatar_url( $user_id, $avatar_args );
|
|
$author['display_name'] = get_the_author_meta( 'display_name' );
|
|
$author['website'] = get_the_author_meta( 'user_url' );
|
|
$author['bio'] = get_the_author_meta( 'description' );
|
|
$author['posts_url'] = get_author_posts_url( $user_id );
|
|
|
|
} elseif ( $custom_src ) {
|
|
|
|
if ( ! empty( $settings['author_avatar']['url'] ) ) {
|
|
$avatar_src = $settings['author_avatar']['url'];
|
|
|
|
if ( $settings['author_avatar']['id'] ) {
|
|
$attachment_image_src = wp_get_attachment_image_src( $settings['author_avatar']['id'], 'medium' );
|
|
|
|
if ( ! empty( $attachment_image_src[0] ) ) {
|
|
$avatar_src = $attachment_image_src[0];
|
|
}
|
|
}
|
|
|
|
$author['avatar'] = $avatar_src;
|
|
}
|
|
|
|
$author['display_name'] = $settings['author_name'];
|
|
$author['website'] = $settings['author_website']['url'];
|
|
$author['bio'] = wpautop( $settings['author_bio'] );
|
|
$author['posts_url'] = $settings['posts_url']['url'];
|
|
}
|
|
|
|
$print_avatar = ( ( ! $custom_src && 'yes' === $settings['show_avatar'] ) || ( $custom_src && ! empty( $author['avatar'] ) ) );
|
|
$print_name = ( ( ! $custom_src && 'yes' === $settings['show_name'] ) || ( $custom_src && ! empty( $author['display_name'] ) ) );
|
|
$print_bio = ( ( ! $custom_src && 'yes' === $settings['show_biography'] ) || ( $custom_src && ! empty( $author['bio'] ) ) );
|
|
$print_link = ( ( ! $custom_src && 'yes' === $settings['show_link'] ) && ! empty( $settings['link_text'] ) || ( $custom_src && ! empty( $author['posts_url'] ) && ! empty( $settings['link_text'] ) ) );
|
|
|
|
if ( ! empty( $settings['link_to'] ) || $custom_src ) {
|
|
if ( ( $custom_src || 'website' === $settings['link_to'] ) && ! empty( $author['website'] ) ) {
|
|
$link_tag = 'a';
|
|
$link_url = $author['website'];
|
|
|
|
if ( $custom_src ) {
|
|
$link_target = $settings['author_website']['is_external'] ? '_blank' : '';
|
|
} else {
|
|
$link_target = '_blank';
|
|
}
|
|
} elseif ( 'posts_archive' === $settings['link_to'] && ! empty( $author['posts_url'] ) ) {
|
|
$link_tag = 'a';
|
|
$link_url = $author['posts_url'];
|
|
}
|
|
|
|
if ( ! empty( $link_url ) ) {
|
|
$this->add_render_attribute( 'author_link', 'href', esc_url( $link_url ) );
|
|
|
|
if ( ! empty( $link_target ) ) {
|
|
$this->add_render_attribute( 'author_link', 'target', $link_target );
|
|
}
|
|
}
|
|
}
|
|
|
|
$this->add_render_attribute(
|
|
'button',
|
|
'class', [
|
|
'elementor-author-box__button',
|
|
'elementor-button',
|
|
'elementor-size-xs',
|
|
]
|
|
);
|
|
|
|
if ( $print_link ) {
|
|
$this->add_render_attribute( 'button', 'href', esc_url( $author['posts_url'] ) );
|
|
}
|
|
|
|
if ( $print_link && ! empty( $settings['button_hover_animation'] ) ) {
|
|
$this->add_render_attribute(
|
|
'button',
|
|
'class',
|
|
'elementor-animation-' . $settings['button_hover_animation']
|
|
);
|
|
}
|
|
|
|
if ( $print_avatar ) {
|
|
$this->add_render_attribute(
|
|
'avatar',
|
|
[
|
|
'src' => esc_url( $author['avatar'] ),
|
|
'alt' => ( ! empty( $author['display_name'] ) )
|
|
? sprintf(
|
|
/* translators: %s: Author display name. */
|
|
esc_attr__( 'Picture of %s', 'elementor-pro' ),
|
|
$author['display_name']
|
|
)
|
|
: esc_html__( 'Author picture', 'elementor-pro' ),
|
|
'loading' => 'lazy',
|
|
]
|
|
);
|
|
}
|
|
|
|
?>
|
|
<div class="elementor-author-box">
|
|
<?php if ( $print_avatar ) { ?>
|
|
<<?php Utils::print_validated_html_tag( $link_tag ); ?> <?php $this->print_render_attribute_string( 'author_link' ); ?> class="elementor-author-box__avatar">
|
|
<img <?php $this->print_render_attribute_string( 'avatar' ); ?>>
|
|
</<?php Utils::print_validated_html_tag( $link_tag ); ?>>
|
|
<?php } ?>
|
|
|
|
<div class="elementor-author-box__text">
|
|
<?php if ( $print_name ) : ?>
|
|
<<?php Utils::print_validated_html_tag( $link_tag ); ?> <?php $this->print_render_attribute_string( 'author_link' ); ?>>
|
|
<<?php Utils::print_validated_html_tag( $author_name_tag ); ?> class="elementor-author-box__name">
|
|
<?php Utils::print_unescaped_internal_string( $author['display_name'] ); ?>
|
|
</<?php Utils::print_validated_html_tag( $author_name_tag ); ?>>
|
|
</<?php Utils::print_validated_html_tag( $link_tag ); ?>>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $print_bio ) : ?>
|
|
<div class="elementor-author-box__bio">
|
|
<?php Utils::print_unescaped_internal_string( $author['bio'] ); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ( $print_link ) : ?>
|
|
<a <?php $this->print_render_attribute_string( 'button' ); ?>>
|
|
<?php $this->print_unescaped_setting( 'link_text' ); ?>
|
|
</a>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
}
|
|
|
|
public function get_group_name() {
|
|
return 'theme-elements';
|
|
}
|
|
}
|