PATH:
home
/
thebhoeo
/
public_html
/
wp-content
/
themes
/
woodmart
/
inc
/
modules
/
layouts
/
elementor
/
single-post
<?php /** * Author biography map. * * @package woodmart */ namespace XTS\Modules\Layouts; use Elementor\Controls_Manager; use Elementor\Plugin; use Elementor\Widget_Base; use Elementor\Group_Control_Typography; if ( ! defined( 'ABSPATH' ) ) { exit; // Direct access not allowed. } /** * Elementor widget that inserts an embeddable content into the page, from any given URL. */ class Author_Bio extends Widget_Base { /** * Get widget name. * * @return string Widget name. */ public function get_name() { return 'wd_post_author_bio'; } /** * Get widget title. * * @return string Widget title. */ public function get_title() { return esc_html__( 'Author bio', 'woodmart' ); } /** * Get widget icon. * * @return string Widget icon. */ public function get_icon() { return 'wd-icon-author-bio'; } /** * Get widget categories. * * @return array Widget categories. */ public function get_categories() { return array( 'wd-posts-elements' ); } /** * Show in panel. * * @return bool Whether to show the widget in the panel or not. */ public function show_in_panel() { return Main::is_layout_type( 'single_post' ) || Main::is_layout_type( 'blog_archive' ); } /** * Register the widget controls. */ protected function register_controls() { /** * Style tab. */ /** * General settings. */ $this->start_controls_section( 'general_style_section', array( 'label' => esc_html__( 'General', 'woodmart' ), 'tab' => Controls_Manager::TAB_STYLE, ) ); $this->add_control( 'css_classes', array( 'type' => 'wd_css_class', 'default' => 'wd-single-post-author-bio', 'prefix_class' => '', ) ); $this->add_control( 'alignment', array( 'label' => esc_html__( 'Alignment', 'woodmart' ), 'type' => 'wd_buttons', 'options' => array( 'left' => array( 'title' => esc_html__( 'Left', 'woodmart' ), 'image' => WOODMART_ASSETS_IMAGES . '/settings/align/left.jpg', ), 'center' => array( 'title' => esc_html__( 'Center', 'woodmart' ), 'image' => WOODMART_ASSETS_IMAGES . '/settings/align/center.jpg', ), 'right' => array( 'title' => esc_html__( 'Right', 'woodmart' ), 'image' => WOODMART_ASSETS_IMAGES . '/settings/align/right.jpg', ), ), 'prefix_class' => 'text-', 'default' => 'left', ) ); $this->end_controls_section(); /** * Title section */ $this->start_controls_section( 'title_style_section', array( 'label' => esc_html__( 'Title', 'woodmart' ), 'tab' => Controls_Manager::TAB_STYLE, ) ); $this->add_group_control( Group_Control_Typography::get_type(), array( 'label' => esc_html__( 'Typography', 'woodmart' ), 'name' => 'title_typography', 'selector' => '{{WRAPPER}} .wd-author-title', ) ); $this->add_control( 'title_color', array( 'label' => esc_html__( 'Color', 'woodmart' ), 'type' => Controls_Manager::COLOR, 'selectors' => array( '{{WRAPPER}} .wd-author-title' => 'color: {{VALUE}}', ), ) ); $this->end_controls_section(); /** * Text section */ $this->start_controls_section( 'text_style_section', array( 'label' => esc_html__( 'Text', 'woodmart' ), 'tab' => Controls_Manager::TAB_STYLE, ) ); $this->add_group_control( Group_Control_Typography::get_type(), array( 'label' => esc_html__( 'Typography', 'woodmart' ), 'name' => 'text_typography', 'selector' => '{{WRAPPER}} .wd-author-area-info', ) ); $this->add_control( 'text_color', array( 'label' => esc_html__( 'Color', 'woodmart' ), 'type' => Controls_Manager::COLOR, 'selectors' => array( '{{WRAPPER}} .wd-author-area-info' => 'color: {{VALUE}}', ), ) ); $this->end_controls_section(); /** * Link section */ $this->start_controls_section( 'link_style_section', array( 'label' => esc_html__( 'Link', 'woodmart' ), 'tab' => Controls_Manager::TAB_STYLE, ) ); $this->add_group_control( Group_Control_Typography::get_type(), array( 'label' => esc_html__( 'Typography', 'woodmart' ), 'name' => 'link_typography', 'selector' => '{{WRAPPER}} .wd-author-link', ) ); $this->start_controls_tabs( 'link_color_tabs' ); $this->start_controls_tab( 'link_color_tab', array( 'label' => esc_html__( 'Idle', 'woodmart' ), ) ); $this->add_control( 'link_idle_color', array( 'label' => esc_html__( 'Color', 'woodmart' ), 'type' => Controls_Manager::COLOR, 'selectors' => array( '{{WRAPPER}} .wd-author-link' => '--wd-link-color: {{VALUE}}', ), ) ); $this->end_controls_tab(); $this->start_controls_tab( 'link_hover_color_tab', array( 'label' => esc_html__( 'Hover', 'woodmart' ), ) ); $this->add_control( 'link_hover_color', array( 'label' => esc_html__( 'Color', 'woodmart' ), 'type' => Controls_Manager::COLOR, 'selectors' => array( '{{WRAPPER}} .wd-author-link' => '--wd-link-color-hover: {{VALUE}}', ), ) ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->end_controls_section(); } /** * Render the widget output on the frontend. */ protected function render() { if ( woodmart_is_blog_archive() && ( ! is_author() || 'woodmart_layout' === get_post_type() ) ) { return; } Main::setup_preview(); get_template_part( 'author-bio' ); Main::restore_preview(); } } Plugin::instance()->widgets_manager->register( new Author_Bio() );
[-] class-post-comments-button.php
[edit]
[-] class-post-meta-value.php
[edit]
[-] class-post-title.php
[edit]
[-] class-post-tags.php
[edit]
[-] class-author-bio.php
[edit]
[-] class-post-content.php
[edit]
[-] class-post-excerpt.php
[edit]
[-] class-post-author-meta.php
[edit]
[-] class-post-navigation.php
[edit]
[-] class-post-categories.php
[edit]
[-] class-post-comment-form.php
[edit]
[-] class-post-comments.php
[edit]
[+]
..
[-] class-post-date-meta.php
[edit]
[-] class-post-image.php
[edit]