![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /proc/self/cwd/wp-content/plugins/bdthemes-element-pack/modules/post-card/widgets/ |
<?php namespace ElementPack\Modules\PostCard\Widgets; use Elementor\Controls_Manager; use Elementor\Group_Control_Border; use Elementor\Group_Control_Box_Shadow; use Elementor\Group_Control_Typography; use Elementor\Group_Control_Image_Size; use ElementPack\Utils; use Elementor\Icons_Manager; use ElementPack\Base\Module_Base; use ElementPack\Includes\Controls\GroupQuery\Group_Control_Query; use ElementPack\Traits\Global_Widget_Controls; if (!defined('ABSPATH')) exit; // Exit if accessed directly class Post_Card extends Module_Base { use Group_Control_Query; use Global_Widget_Controls; public $_query = null; public function get_name() { return 'bdt-post-card'; } public function get_title() { return BDTEP . esc_html__('Post Card', 'bdthemes-element-pack'); } public function get_icon() { return 'bdt-wi-post-card'; } public function get_categories() { return ['element-pack']; } public function get_keywords() { return ['post', 'card', 'blog', 'recent', 'news']; } public function get_style_depends() { if ($this->ep_is_edit_mode()) { return ['ep-styles']; } else { return ['ep-post-card']; } } public function get_custom_help_url() { return 'https://youtu.be/VKtQCjnEJvE'; } public function get_query() { return $this->_query; } protected function register_controls() { $this->start_controls_section( 'section_content_layout', [ 'label' => esc_html__('Layout', 'bdthemes-element-pack'), ] ); $this->add_control( 'thumb', [ 'label' => esc_html__('Image', 'bdthemes-element-pack'), 'type' => Controls_Manager::SWITCHER, 'default' => 'yes', ] ); $this->add_group_control( Group_Control_Image_Size::get_type(), [ 'name' => 'thumbnail', 'label' => esc_html__('Image Size', 'bdthemes-element-pack'), 'exclude' => ['custom'], 'default' => 'large', 'condition' => [ 'thumb' => 'yes', ], ] ); $this->add_control( 'title', [ 'label' => esc_html__('Title', 'bdthemes-element-pack'), 'type' => Controls_Manager::SWITCHER, 'default' => 'yes', ] ); $this->add_control( 'meta_date', [ 'label' => esc_html__('Date', 'bdthemes-element-pack'), 'type' => Controls_Manager::SWITCHER, 'default' => 'yes', ] ); $this->add_control( 'human_diff_time', [ 'label' => esc_html__('Human Different Time', 'bdthemes-element-pack') . BDTEP_NC, 'type' => Controls_Manager::SWITCHER, 'condition' => [ 'meta_date' => 'yes' ] ] ); $this->add_control( 'human_diff_time_short', [ 'label' => esc_html__('Time Short Format', 'bdthemes-element-pack') . BDTEP_NC, 'type' => Controls_Manager::SWITCHER, 'condition' => [ 'human_diff_time' => 'yes', 'meta_date' => 'yes' ] ] ); $this->add_control( 'meta_category', [ 'label' => esc_html__('Category', 'bdthemes-element-pack'), 'type' => Controls_Manager::SWITCHER, 'default' => 'yes', ] ); $this->add_control( 'tags', [ 'label' => esc_html__('Tags', 'bdthemes-element-pack'), 'type' => Controls_Manager::SWITCHER, 'default' => 'yes', ] ); $this->add_control( 'excerpt', [ 'label' => esc_html__('Show Text', 'bdthemes-element-pack'), 'type' => Controls_Manager::SWITCHER, 'default' => 'yes', ] ); $this->add_control( 'excerpt_length', [ 'label' => esc_html__('Text Limit', 'bdthemes-element-pack'), 'description' => esc_html__('It\'s just work for main content, but not working with excerpt. If you set 0 so you will get full main content.', 'bdthemes-element-pack'), 'type' => Controls_Manager::NUMBER, 'default' => 15, 'condition' => [ 'excerpt' => 'yes', ], ] ); $this->add_control( 'strip_shortcode', [ 'label' => esc_html__('Strip Shortcode', 'bdthemes-element-pack'), 'type' => Controls_Manager::SWITCHER, 'default' => 'yes', 'condition' => [ 'excerpt' => 'yes', ], ] ); $this->add_control( 'button', [ 'label' => esc_html__('Button', 'bdthemes-element-pack'), 'type' => Controls_Manager::SWITCHER, 'default' => 'yes', ] ); $this->add_control( 'contant_alignment', [ 'label' => esc_html__('Alignment', 'bdthemes-element-pack'), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => esc_html__('Left', 'bdthemes-element-pack'), 'icon' => 'eicon-text-align-left', ], 'center' => [ 'title' => esc_html__('Center', 'bdthemes-element-pack'), 'icon' => 'eicon-text-align-center', ], 'right' => [ 'title' => esc_html__('Right', 'bdthemes-element-pack'), 'icon' => 'eicon-text-align-right', ], ], 'selectors' => [ '{{WRAPPER}} .bdt-post-card-desc' => 'text-align: {{VALUE}}', ], ] ); $this->add_control( 'title_tags', [ 'label' => __('Title HTML Tag', 'bdthemes-element-pack'), 'type' => Controls_Manager::SELECT, 'default' => 'h4', 'options' => element_pack_title_tags(), 'condition' => [ 'title' => 'yes' ] ] ); $this->end_controls_section(); //New Query Builder Settings $this->start_controls_section( 'section_post_query_builder', [ 'label' => __('Query', 'bdthemes-element-pack'), 'tab' => Controls_Manager::TAB_CONTENT, ] ); $this->register_query_builder_controls(); $this->update_control( 'posts_per_page', [ 'default' => 3, ] ); $this->end_controls_section(); $this->start_controls_section( 'section_content_button', [ 'label' => esc_html__('Button', 'bdthemes-element-pack'), 'condition' => [ 'button' => 'yes', ], ] ); $this->add_control( 'button_text', [ 'label' => esc_html__('Text', 'bdthemes-element-pack'), 'type' => Controls_Manager::TEXT, 'placeholder' => esc_html__('Read More', 'bdthemes-element-pack'), 'default' => esc_html__('Read More', 'bdthemes-element-pack'), 'label_block' => true, ] ); $this->add_control( 'post_card_icon', [ 'label' => esc_html__('Icon', 'bdthemes-element-pack'), 'type' => Controls_Manager::ICONS, 'fa4compatibility' => 'icon', 'label_block' => false, 'skin' => 'inline' ] ); $this->add_control( 'icon_align', [ 'label' => esc_html__('Icon Position', 'bdthemes-element-pack'), 'type' => Controls_Manager::SELECT, 'default' => 'right', 'options' => [ 'left' => esc_html__('Left', 'bdthemes-element-pack'), 'right' => esc_html__('Right', 'bdthemes-element-pack'), ], 'condition' => [ 'post_card_icon[value]!' => '', ], ] ); $this->add_control( 'icon_indent', [ 'label' => esc_html__('Icon Spacing', 'bdthemes-element-pack'), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 8, ], 'range' => [ 'px' => [ 'max' => 50, ], ], 'condition' => [ 'post_card_icon[value]!' => '', ], 'selectors' => [ '{{WRAPPER}} .bdt-post-card .bdt-button-icon-align-right' => is_rtl() ? 'margin-right: {{SIZE}}{{UNIT}};' : 'margin-left: {{SIZE}}{{UNIT}};', '{{WRAPPER}} .bdt-post-card .bdt-button-icon-align-left' => is_rtl() ? 'margin-left: {{SIZE}}{{UNIT}};' : 'margin-right: {{SIZE}}{{UNIT}};', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_style_item', [ 'label' => esc_html__('Item', 'bdthemes-element-pack'), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_responsive_control( 'padding', [ 'label' => esc_html__('Description Padding', 'bdthemes-element-pack'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', 'em', '%'], 'selectors' => [ '{{WRAPPER}} .bdt-post-card-desc' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_control( 'item_background', [ 'label' => esc_html__('Item Background', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-post-card-desc' => 'background-color: {{SIZE}};', ], ] ); $this->add_control( 'shadow_color', [ 'label' => esc_html__('Highlighted Border Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}}' => '--ep-post-card-shadow-color: {{VALUE}};' ], ] ); $this->add_responsive_control( 'shadow_width', [ 'label' => esc_html__('Highlighted Border Width', 'bdthemes-element-pack') . BDTEP_NC, 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 0, 'max' => 50, ], ], 'selectors' => [ '{{WRAPPER}}' => '--ep-post-card-shadow-size: {{SIZE}}px;' ], ] ); $this->add_responsive_control( 'item_border_radius', [ 'label' => __('Border Radius', 'bdthemes-element-pack') . BDTEP_NC, 'type' => Controls_Manager::DIMENSIONS, 'selectors' => [ '{{WRAPPER}} .bdt-post-card-item' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_style_tags', [ 'label' => esc_html__('Tags', 'bdthemes-element-pack'), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ 'tags' => 'yes', ], ] ); $this->add_control( 'tags_color', [ 'label' => esc_html__('Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-post-card-tag a' => 'color: {{VALUE}}', ], ] ); $this->add_control( 'tag_background', [ 'label' => esc_html__('Background', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-post-card-tag a' => 'background: {{SIZE}};', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'tags_typography', 'label' => esc_html__('Typography', 'bdthemes-element-pack'), 'selector' => '{{WRAPPER}} .bdt-post-card-tag a', ] ); $this->add_responsive_control( 'tags_spacing', [ 'label' => esc_html__('Spacing', 'bdthemes-element-pack') . BDTEP_NC, 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 0, 'max' => 50, ], ], 'selectors' => [ '{{WRAPPER}} .bdt-post-card-tag' => 'margin-bottom: {{SIZE}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'tags_border_radius', [ 'label' => __('Border Radius', 'bdthemes-element-pack') . BDTEP_NC, 'type' => Controls_Manager::DIMENSIONS, 'selectors' => [ '{{WRAPPER}} .bdt-post-card-tag a' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}; overflow: hidden;', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_style_title', [ 'label' => esc_html__('Title', 'bdthemes-element-pack'), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ 'title' => 'yes', ], ] ); $this->add_control( 'title_color', [ 'label' => esc_html__('Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-post-card-title' => 'color: {{VALUE}}', ], ] ); $this->add_control( 'title_hover_color', [ 'label' => esc_html__('Hover Color', 'bdthemes-element-pack') . BDTEP_NC, 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-post-card-title:hover' => 'color: {{VALUE}}', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'title_typography', 'label' => esc_html__('Typography', 'bdthemes-element-pack'), 'selector' => '{{WRAPPER}} .bdt-post-card-title', ] ); $this->add_responsive_control( 'title_spacing', [ 'label' => esc_html__('Spacing', 'bdthemes-element-pack') . BDTEP_NC, 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 0, 'max' => 50, ], ], 'selectors' => [ '{{WRAPPER}} .bdt-post-card-title' => 'margin-bottom: {{SIZE}}{{UNIT}};', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_style_meta', [ 'label' => esc_html__('Meta', 'bdthemes-element-pack'), 'tab' => Controls_Manager::TAB_STYLE, 'conditions' => [ 'relation' => 'or', 'terms' => [ [ 'name' => 'meta_date', 'value' => 'yes' ], [ 'name' => 'meta_category', 'value' => 'yes' ], ] ] ] ); $this->add_control( 'meta_color', [ 'label' => esc_html__('Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-post-card-meta *' => 'color: {{VALUE}}', '{{WRAPPER}} .elementor-widget-container .bdt-subnav span:after' => 'background: {{VALUE}}', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'meta_typography', 'label' => esc_html__('Typography', 'bdthemes-element-pack'), 'selector' => '{{WRAPPER}} .bdt-post-card-meta *', ] ); $this->add_control( 'meta_alignment', [ 'label' => esc_html__('Alignment', 'bdthemes-element-pack'), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'flex-start' => [ 'title' => esc_html__('Left', 'bdthemes-element-pack'), 'icon' => 'eicon-text-align-left', ], 'center' => [ 'title' => esc_html__('Center', 'bdthemes-element-pack'), 'icon' => 'eicon-text-align-center', ], 'flex-end' => [ 'title' => esc_html__('Right', 'bdthemes-element-pack'), 'icon' => 'eicon-text-align-right', ], ], 'selectors' => [ '{{WRAPPER}} .bdt-post-card-meta' => 'justify-content: {{VALUE}}', ], ] ); $this->add_responsive_control( 'meta_spacing', [ 'label' => esc_html__('Spacing', 'bdthemes-element-pack') . BDTEP_NC, 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 0, 'max' => 50, ], ], 'selectors' => [ '{{WRAPPER}} .bdt-post-card-desc .bdt-subnav span' => 'margin-bottom: {{SIZE}}{{UNIT}};', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_style_excerpt', [ 'label' => esc_html__('Text', 'bdthemes-element-pack'), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ 'excerpt' => 'yes', ], ] ); $this->add_control( 'excerpt_color', [ 'label' => esc_html__('Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-post-card-excerpt' => 'color: {{VALUE}}', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'excerpt_typography', 'label' => esc_html__('Typography', 'bdthemes-element-pack'), 'selector' => '{{WRAPPER}} .bdt-post-card-excerpt', ] ); $this->add_responsive_control( 'text_spacing', [ 'label' => esc_html__('Spacing', 'bdthemes-element-pack') . BDTEP_NC, 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 0, 'max' => 50, ], ], 'selectors' => [ '{{WRAPPER}} .bdt-post-card-excerpt' => 'margin-bottom: {{SIZE}}{{UNIT}};', ], ] ); $this->end_controls_section(); $this->start_controls_section( 'section_style_button', [ 'label' => esc_html__('Button', 'bdthemes-element-pack'), 'tab' => Controls_Manager::TAB_STYLE, 'condition' => [ 'button' => 'yes', ], ] ); $this->start_controls_tabs('tabs_button_style'); $this->start_controls_tab( 'tab_button_normal', [ 'label' => esc_html__('Normal', 'bdthemes-element-pack'), ] ); $this->add_control( 'button_text_color', [ 'label' => esc_html__('Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-post-card-button' => 'color: {{VALUE}};', '{{WRAPPER}} .bdt-post-card-button svg' => 'fill: {{VALUE}};', ], ] ); $this->add_control( 'background_color', [ 'label' => esc_html__('Background Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-post-card-button' => 'background-color: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'border', 'label' => esc_html__('Border', 'bdthemes-element-pack'), 'placeholder' => '1px', 'default' => '1px', 'selector' => '{{WRAPPER}} .bdt-post-card-button', ] ); $this->add_responsive_control( 'border_radius', [ 'label' => esc_html__('Border Radius', 'bdthemes-element-pack'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', '%'], 'selectors' => [ '{{WRAPPER}} .bdt-post-card-button' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_responsive_control( 'button_padding', [ 'label' => esc_html__('Padding', 'bdthemes-element-pack'), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => ['px', 'em', '%'], 'selectors' => [ '{{WRAPPER}} .bdt-post-card-button' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'button_shadow', 'selector' => '{{WRAPPER}} .bdt-post-card-button', ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'typography', 'label' => esc_html__('Typography', 'bdthemes-element-pack'), 'selector' => '{{WRAPPER}} .bdt-post-card-button', ] ); $this->end_controls_tab(); $this->start_controls_tab( 'tab_button_hover', [ 'label' => esc_html__('Hover', 'bdthemes-element-pack'), ] ); $this->add_control( 'hover_color', [ 'label' => esc_html__('Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-post-card-button:hover' => 'color: {{VALUE}};', '{{WRAPPER}} .bdt-post-card-button:hover svg' => 'fill: {{VALUE}};', ], ] ); $this->add_control( 'button_background_hover_color', [ 'label' => esc_html__('Background Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} .bdt-post-card-button:hover' => 'background-color: {{VALUE}};', ], ] ); $this->add_control( 'button_hover_border_color', [ 'label' => esc_html__('Border Color', 'bdthemes-element-pack'), 'type' => Controls_Manager::COLOR, 'condition' => [ 'border_border!' => '', ], 'selectors' => [ '{{WRAPPER}} .bdt-post-card-button:hover' => 'border-color: {{VALUE}};', ], ] ); $this->add_control( 'button_hover_animation', [ 'label' => esc_html__('Animation', 'bdthemes-element-pack'), 'type' => Controls_Manager::HOVER_ANIMATION, ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->end_controls_section(); } public function render_excerpt() { if (!$this->get_settings('excerpt')) { return; } $strip_shortcode = $this->get_settings_for_display('strip_shortcode'); ?> <div class="bdt-post-card-excerpt"> <?php if (has_excerpt()) { the_excerpt(); } else { echo element_pack_custom_excerpt($this->get_settings_for_display('excerpt_length'), $strip_shortcode); } ?> </div> <?php } public function get_taxonomies() { $taxonomies = get_taxonomies(['show_in_nav_menus' => true], 'objects'); $options = ['' => '']; foreach ($taxonomies as $taxonomy) { $options[$taxonomy->name] = $taxonomy->label; } return $options; } public function get_posts_tags() { $taxonomy = $this->get_settings('taxonomy'); foreach ($this->_query->posts as $post) { if (!$taxonomy) { $post->tags = []; continue; } $tags = wp_get_post_terms($post->ID, $taxonomy); $tags_slugs = []; foreach ($tags as $tag) { $tags_slugs[$tag->term_id] = $tag; } $post->tags = $tags_slugs; } } /** * Get post query builder arguments */ public function query_posts($posts_per_page) { $settings = $this->get_settings_for_display(); $args = []; if ($posts_per_page) { $args['posts_per_page'] = $posts_per_page; $args['paged'] = max(1, get_query_var('paged'), get_query_var('page')); } $default = $this->getGroupControlQueryArgs(); $args = array_merge($default, $args); $this->_query = new \WP_Query($args); } public function render_date() { $settings = $this->get_settings_for_display(); if (!$settings['meta_date']) { return; } if ($settings['human_diff_time'] == 'yes') { return element_pack_post_time_diff(($settings['human_diff_time_short'] == 'yes') ? 'short' : ''); } else { return get_the_date(); } } public function render() { $settings = $this->get_settings_for_display(); $id = uniqid('bdtpc_'); $media = ''; $animation = ($settings['button_hover_animation']) ? ' elementor-animation-' . $settings['button_hover_animation'] : ''; $posts_per_page = $settings['posts_per_page']; $this->query_posts($posts_per_page); $wp_query = $this->get_query(); if (!$wp_query->found_posts) { return; } $this->add_render_attribute( [ 'post-card' => [ 'class' => [ 'bdt-post-card', 'bdt-grid-collapse', 'bdt-child-width-1-1@s', 'bdt-child-width-1-3@m', 'bdt-grid', 'bdt-grid-match' ], 'data-bdt-grid' => '' ] ] ); if (!isset($settings['icon']) && !Icons_Manager::is_migration_allowed()) { // add old default $settings['icon'] = 'fas fa-arrow-right'; } $migrated = isset($settings['__fa4_migrated']['post_card_icon']); $is_new = empty($settings['icon']) && Icons_Manager::is_migration_allowed(); $this->add_render_attribute('bdt-post-card-title', 'class', 'bdt-post-card-title'); ?> <div <?php echo $this->get_render_attribute_string('post-card'); ?>> <?php while ($wp_query->have_posts()) : $wp_query->the_post(); ?> <div> <div class="bdt-post-card-item"> <?php if ('yes' == $settings['thumb']) : $placeholder_image_src = Utils::get_placeholder_image_src(); $image_src = wp_get_attachment_image_src(get_post_thumbnail_id(), $settings['thumbnail_size']); ?> <a href="<?php echo esc_url(get_permalink()); ?>" title="<?php echo esc_attr(get_the_title()); ?>" class="bdt-post-card-thumb"> <?php if (!$image_src) { printf('<img src="%1$s" alt="%2$s">', $placeholder_image_src, esc_html(get_the_title())); } else { print(wp_get_attachment_image( get_post_thumbnail_id(), $settings['thumbnail_size'], false, [ 'alt' => esc_html(get_the_title()) ] )); } ?> </a> <?php endif; ?> <div class="bdt-post-card-desc"> <?php if ('yes' == $settings['tags']) : ?> <?php $tags_list = get_the_tag_list('<span>', '</span> <span>', '</span>'); ?> <?php if ($tags_list) : ?> <p class="bdt-post-card-tag"><?php echo wp_kses_post($tags_list); ?></p> <?php endif ?> <?php endif ?> <?php if ('yes' == $settings['title']) : ?> <<?php echo Utils::get_valid_html_tag($settings['title_tags']); ?> <?php echo $this->get_render_attribute_string('bdt-post-card-title'); ?>> <a href="<?php echo esc_url(get_permalink()); ?>" title="<?php esc_attr(get_the_title()); ?>"><?php echo esc_html(get_the_title()); ?></a> </<?php echo Utils::get_valid_html_tag($settings['title_tags']); ?>> <?php endif ?> <div class="bdt-post-card-meta bdt-subnav bdt-flex-middle"> <?php if ('yes' == $settings['meta_date']) : $meta_list = '<span>' . $this->render_date() . '</span>'; ?> <?php echo wp_kses_post($meta_list); ?> <?php endif ?> <?php if ('yes' == $settings['meta_category']) : $meta_list = '<span>' . get_the_category_list(', ') . '</span>'; ?> <?php echo wp_kses_post($meta_list); ?> <?php endif ?> </div> <?php $this->render_excerpt(); ?> <?php if ('yes' == $settings['button']) : ?> <a href="<?php echo esc_url(get_permalink()); ?>" class="bdt-post-card-button<?php echo esc_attr($animation); ?>"><?php echo esc_html($settings['button_text']); ?> <?php if ($settings['post_card_icon']['value']) : ?> <span class="bdt-button-icon-align-<?php echo esc_attr($settings['icon_align']); ?>"> <?php if ($is_new || $migrated) : Icons_Manager::render_icon($settings['post_card_icon'], ['aria-hidden' => 'true', 'class' => 'fa-fw']); else : ?> <i class="<?php echo esc_attr($settings['icon']); ?>" aria-hidden="true"></i> <?php endif; ?> </span> <?php endif; ?> </a> <?php endif ?> </div> </div> </div> <?php endwhile; wp_reset_postdata(); ?> </div> <?php } }