PATH:
home
/
thebhoeo
/
public_html
/
wp-content
/
themes
/
woodmart
/
inc
/
integrations
/
elementor
/
elements
/
blog
<?php /** * Blog map. * * @package woodmart */ namespace XTS\Elementor; use Elementor\Widget_Base; use Elementor\Controls_Manager; use Elementor\Group_Control_Typography; use Elementor\Plugin; if ( ! defined( 'ABSPATH' ) ) { exit; // Direct access not allowed. } /** * Elementor widget that inserts an embeddable content into the page, from any given URL. * * @since 1.0.0 */ class Blog extends Widget_Base { /** * Get widget name. * * @since 1.0.0 * @access public * * @return string Widget name. */ public function get_name() { return 'wd_blog'; } /** * Get widget title. * * @since 1.0.0 * @access public * * @return string Widget title. */ public function get_title() { return esc_html__( 'Blog', 'woodmart' ); } /** * Get widget icon. * * @since 1.0.0 * @access public * * @return string Widget icon. */ public function get_icon() { return 'wd-icon-blog'; } /** * Get widget categories. * * @since 1.0.0 * @access public * * @return array Widget categories. */ public function get_categories() { return [ 'wd-elements' ]; } /** * Register the widget controls. * * @since 1.0.0 * @access protected */ protected function register_controls() { /** * Content tab. */ /** * General settings. */ $this->start_controls_section( 'general_content_section', [ 'label' => esc_html__( 'General', 'woodmart' ), ] ); $this->add_control( 'extra_width_classes', array( 'type' => 'wd_css_class', 'default' => 'wd-width-100', 'prefix_class' => '', ) ); $this->add_control( 'element_title', [ 'label' => esc_html__( 'Element title', 'woodmart' ), 'type' => Controls_Manager::TEXT, ] ); $this->add_control( 'post_type', [ 'label' => esc_html__( 'Data source', 'woodmart' ), 'description' => esc_html__( 'Select content type for your grid.', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => woodmart_get_options_depend_builder( array( 'post' => esc_html__( 'Post', 'woodmart' ), 'ids' => esc_html__( 'List of IDs', 'woodmart' ), ), array( 'single_post' => array( 'related_posts' => esc_html__( 'Related posts', 'woodmart' ), ), ) ), 'default' => 'post', ] ); $this->add_control( 'include', [ 'label' => esc_html__( 'Include only', 'woodmart' ), 'description' => esc_html__( 'Add posts, pages, etc. by title.', 'woodmart' ), 'type' => 'wd_autocomplete', 'search' => 'woodmart_get_posts_by_query', 'render' => 'woodmart_get_posts_title_by_id', 'post_type' => 'post', 'multiple' => true, 'label_block' => true, 'condition' => [ 'post_type' => 'ids', ], ] ); $this->add_control( 'taxonomies', [ 'label' => esc_html__( 'Categories or tags', 'woodmart' ), 'description' => esc_html__( 'Enter categories, tags or custom taxonomies.', 'woodmart' ), 'type' => 'wd_autocomplete', 'search' => 'woodmart_get_taxonomies_by_query', 'render' => 'woodmart_get_taxonomies_title_by_id', 'taxonomy' => [ 'category', 'post_tag' ], 'multiple' => true, 'label_block' => true, 'condition' => [ 'post_type!' => array( 'ids', 'related_posts' ), ] ] ); $this->add_control( 'orderby', [ 'label' => esc_html__( 'Order by', 'woodmart' ), 'description' => esc_html__( 'Select order type. If "Meta value" or "Meta value Number" is chosen then meta key is required.', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'default' => '', 'options' => array( '' => '', 'date' => esc_html__( 'Date', 'woodmart' ), 'id' => esc_html__( 'ID', 'woodmart' ), 'author' => esc_html__( 'Author', 'woodmart' ), 'title' => esc_html__( 'Title', 'woodmart' ), 'modified' => esc_html__( 'Last modified date', 'woodmart' ), 'comment_count' => esc_html__( 'Number of comments', 'woodmart' ), 'menu_order' => esc_html__( 'Menu order', 'woodmart' ), 'meta_value' => esc_html__( 'Meta value', 'woodmart' ), 'meta_value_num' => esc_html__( 'Meta value number', 'woodmart' ), 'rand' => esc_html__( 'Random order', 'woodmart' ), ), ] ); $this->add_control( 'order', [ 'label' => esc_html__( 'Sort order', 'woodmart' ), 'description' => 'Designates the ascending or descending order. More at <a href="http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters" target="_blank">WordPress codex page</a>.', 'type' => Controls_Manager::SELECT, 'default' => 'DESC', 'options' => array( 'DESC' => esc_html__( 'Descending', 'woodmart' ), 'ASC' => esc_html__( 'Ascending', 'woodmart' ), ), ] ); $this->add_control( 'meta_key', [ 'label' => esc_html__( 'Meta key', 'woodmart' ), 'description' => esc_html__( 'Input meta key for grid ordering.', 'woodmart' ), 'type' => Controls_Manager::TEXTAREA, 'condition' => [ 'orderby' => [ 'meta_value', 'meta_value_num' ], ], ] ); $this->add_control( 'offset', [ 'label' => esc_html__( 'Offset', 'woodmart' ), 'description' => esc_html__( 'Number of grid elements to displace or pass over.', 'woodmart' ), 'type' => Controls_Manager::TEXT, 'condition' => [ 'post_type!' => 'ids', ], ] ); $this->add_control( 'exclude', [ 'label' => esc_html__( 'Exclude', 'woodmart' ), 'description' => esc_html__( 'Exclude posts, pages, etc. by title.', 'woodmart' ), 'type' => 'wd_autocomplete', 'search' => 'woodmart_get_posts_by_query', 'render' => 'woodmart_get_posts_title_by_id', 'post_type' => 'post', 'multiple' => true, 'label_block' => true, 'condition' => [ 'post_type!' => array( 'ids', 'related_posts' ), ], ] ); $this->end_controls_section(); /** * Style tab. */ /** * General settings. */ $this->start_controls_section( 'general_style_section', [ 'label' => esc_html__( 'General', 'woodmart' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'blog_design', [ 'label' => esc_html__( 'Blog design', 'woodmart' ), 'description' => esc_html__( 'Choose one of the blog designs available in the theme.', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'default' => 'default', 'options' => array( 'default' => esc_html__( 'Default', 'woodmart' ), 'default-alt' => esc_html__( 'Default alternative', 'woodmart' ), 'small-images' => esc_html__( 'Small images', 'woodmart' ), 'chess' => esc_html__( 'Chess', 'woodmart' ), 'masonry' => esc_html__( 'Grid', 'woodmart' ), 'mask' => esc_html__( 'Mask on image', 'woodmart' ), 'meta-image' => esc_html__( 'Meta on image', 'woodmart' ), 'carousel' => esc_html__( 'Carousel', 'woodmart' ), 'list' => esc_html__( 'List', 'woodmart' ), ), ] ); $this->add_control( 'blog_masonry', [ 'label' => esc_html__( 'Masonry', 'woodmart' ), 'type' => Controls_Manager::SWITCHER, 'return_value' => '1', 'condition' => array( 'blog_design' => array( 'masonry', 'mask' ), ), ] ); $this->add_control( 'blog_carousel_design', [ 'label' => esc_html__( 'Blog carousel design', 'woodmart' ), 'description' => esc_html__( 'Choose one of the blog designs available in the theme.', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'default' => 'masonry', 'options' => array( 'masonry' => esc_html__( 'Default', 'woodmart' ), 'small-images' => esc_html__( 'Small images', 'woodmart' ), 'mask' => esc_html__( 'Mask on image', 'woodmart' ), 'meta-image' => esc_html__( 'Meta on image', 'woodmart' ), ), 'condition' => [ 'blog_design' => 'carousel', ], ] ); $this->add_control( 'img_size', [ 'label' => esc_html__( 'Image resolution', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'default' => 'large', 'options' => woodmart_get_all_image_sizes_names( 'elementor' ), ] ); $this->add_control( 'img_size_custom', [ 'label' => esc_html__( 'Image dimension', 'woodmart' ), 'type' => Controls_Manager::IMAGE_DIMENSIONS, 'description' => esc_html__( 'You can crop the original image size to any custom size. You can also set a single value for height or width in order to keep the original size ratio.', 'woodmart' ), 'condition' => [ 'img_size' => 'custom', ], ] ); $this->add_responsive_control( 'blog_columns', [ 'label' => esc_html__( 'Columns', 'woodmart' ), 'description' => esc_html__( 'Number of columns in the grid.', 'woodmart' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 3, ], 'size_units' => '', 'range' => [ 'px' => [ 'min' => 1, 'max' => 4, 'step' => 1, ], ], 'devices' => array( 'desktop', 'tablet', 'mobile' ), 'classes' => 'wd-hide-custom-breakpoints', 'condition' => [ 'blog_design' => [ 'masonry', 'mask', 'meta-image' ], ], ] ); $this->add_responsive_control( 'blog_spacing', [ 'label' => esc_html__( 'Space between', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'options' => [ '' => esc_html__( 'Inherit from Theme Settings', 'woodmart' ), 0 => esc_html__( '0 px', 'woodmart' ), 2 => esc_html__( '2 px', 'woodmart' ), 6 => esc_html__( '6 px', 'woodmart' ), 10 => esc_html__( '10 px', 'woodmart' ), 20 => esc_html__( '20 px', 'woodmart' ), 30 => esc_html__( '30 px', 'woodmart' ), ], 'default' => '', 'devices' => array( 'desktop', 'tablet', 'mobile' ), 'classes' => 'wd-hide-custom-breakpoints', 'condition' => [ 'blog_design' => [ 'mask', 'masonry', 'carousel', 'meta-image' ], ], ] ); $this->add_control( 'items_per_page', [ 'label' => esc_html__( 'Items per page', 'woodmart' ), 'description' => esc_html__( 'Number of items to show per page.', 'woodmart' ), 'default' => 12, 'type' => Controls_Manager::NUMBER, ] ); $this->add_control( 'pagination', [ 'label' => esc_html__( 'Pagination', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'default' => '', 'options' => array( '' => esc_html__( 'Disabled', 'woodmart' ), 'more-btn' => esc_html__( 'Load more button', 'woodmart' ), 'infinit' => esc_html__( 'Infinit scrolling', 'woodmart' ), ), 'condition' => [ 'blog_design!' => 'carousel', ], ] ); $this->end_controls_section(); /** * Title settings. */ $this->start_controls_section( 'title_style_section', array( 'label' => esc_html__( 'Title', 'woodmart' ), 'tab' => Controls_Manager::TAB_STYLE, ) ); $this->add_control( 'element_title_tag', array( 'label' => esc_html__( 'Tag', 'woodmart' ), 'type' => Controls_Manager::SELECT, 'default' => 'h4', 'options' => array( 'h1' => esc_html__( 'h1', 'woodmart' ), 'h2' => esc_html__( 'h2', 'woodmart' ), 'h3' => esc_html__( 'h3', 'woodmart' ), 'h4' => esc_html__( 'h4', 'woodmart' ), 'h5' => esc_html__( 'h5', 'woodmart' ), 'h6' => esc_html__( 'h6', 'woodmart' ), 'div' => esc_html__( 'div', 'woodmart' ), 'p' => esc_html__( 'p', 'woodmart' ), 'span' => esc_html__( 'span', 'woodmart' ), ), ) ); $this->add_control( 'title_color', array( 'label' => esc_html__( 'Color', 'woodmart' ), 'type' => Controls_Manager::COLOR, 'selectors' => array( '{{WRAPPER}} .wd-el-title' => 'color: {{VALUE}}', ), ) ); $this->add_group_control( Group_Control_Typography::get_type(), array( 'name' => 'title_typography', 'label' => esc_html__( 'Typography', 'woodmart' ), 'selector' => '{{WRAPPER}} .wd-el-title', ) ); $this->end_controls_section(); /** * Visibility settings. */ $this->start_controls_section( 'visibility_style_section', [ 'label' => esc_html__( 'Elements visibility', 'woodmart' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'parts_title', [ 'label' => esc_html__( 'Title for posts', 'woodmart' ), 'type' => Controls_Manager::SWITCHER, 'default' => '1', 'label_on' => esc_html__( 'Yes', 'woodmart' ), 'label_off' => esc_html__( 'No', 'woodmart' ), 'return_value' => '1', ] ); $this->add_control( 'parts_meta', [ 'label' => esc_html__( 'Meta information', 'woodmart' ), 'type' => Controls_Manager::SWITCHER, 'default' => '1', 'label_on' => esc_html__( 'Yes', 'woodmart' ), 'label_off' => esc_html__( 'No', 'woodmart' ), 'return_value' => '1', ] ); $this->add_control( 'parts_text', [ 'label' => esc_html__( 'Post text', 'woodmart' ), 'type' => Controls_Manager::SWITCHER, 'default' => '1', 'label_on' => esc_html__( 'Yes', 'woodmart' ), 'label_off' => esc_html__( 'No', 'woodmart' ), 'return_value' => '1', ] ); $this->add_control( 'parts_btn', [ 'label' => esc_html__( 'Read more button', 'woodmart' ), 'type' => Controls_Manager::SWITCHER, 'default' => '1', 'label_on' => esc_html__( 'Yes', 'woodmart' ), 'label_off' => esc_html__( 'No', 'woodmart' ), 'return_value' => '1', ] ); $this->add_control( 'parts_published_date', array( 'label' => esc_html__( 'Published date', 'woodmart' ), 'type' => Controls_Manager::SWITCHER, 'default' => '1', 'label_on' => esc_html__( 'Yes', 'woodmart' ), 'label_off' => esc_html__( 'No', 'woodmart' ), 'return_value' => '1', ) ); $this->end_controls_section(); /** * Extra settings. */ $this->start_controls_section( 'extra_style_section', [ 'label' => esc_html__( 'Extra', 'woodmart' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'lazy_loading', [ 'label' => esc_html__( 'Lazy loading for images', 'woodmart' ), 'description' => esc_html__( 'Enable lazy loading for images for this element.', 'woodmart' ), 'type' => Controls_Manager::SWITCHER, 'default' => 'no', 'label_on' => esc_html__( 'Yes', 'woodmart' ), 'label_off' => esc_html__( 'No', 'woodmart' ), 'return_value' => 'yes', ] ); $this->end_controls_section(); } /** * Render the widget output on the frontend. * * Written in PHP and used to generate the final HTML. * * @since 1.0.0 * * @access protected */ protected function render() { woodmart_elementor_blog_template( $this->get_settings_for_display() ); } } Plugin::instance()->widgets_manager->register( new Blog() );
[-] class-blog.php
[edit]
[-] blog.php
[edit]
[+]
..