379 lines
21 KiB
PHP
379 lines
21 KiB
PHP
<?php
|
|
|
|
use \Essential_Addons_Elementor\Classes\Helper;
|
|
use \Elementor\Group_Control_Image_Size;
|
|
/**
|
|
* Template Name: Default
|
|
*/
|
|
|
|
if (!defined('ABSPATH')) {
|
|
exit;
|
|
} // Exit if accessed directly
|
|
|
|
if (has_post_thumbnail() && $settings['eael_show_image'] == 'yes') {
|
|
$settings[ 'eael_image_size_customize' ] = [
|
|
'id' => get_post_thumbnail_id(),
|
|
];
|
|
$settings['eael_image_size_customize_size'] = $settings['image_size'];
|
|
$thumbnail_html = Group_Control_Image_Size::get_attachment_image_html( $settings,'eael_image_size_customize' );
|
|
}
|
|
|
|
$enable_ratio = $settings['enable_postgrid_image_ratio'] == 'yes' ? 'eael-image-ratio':'';
|
|
|
|
$title_tag = isset($settings['title_tag']) ? Helper::eael_validate_html_tag($settings['title_tag']) : 'h2';
|
|
|
|
if ($settings['eael_post_grid_preset_style'] === 'two') {
|
|
echo '<article class="eael-grid-post eael-post-grid-column" data-id="' . get_the_ID() . '">
|
|
<div class="eael-grid-post-holder">
|
|
<div class="eael-grid-post-holder-inner">';
|
|
if (has_post_thumbnail() && $settings['eael_show_image'] == 'yes') {
|
|
echo '<div class="eael-entry-media">';
|
|
if ( 'yes' === $settings['eael_show_post_terms'] && 'yes' === $settings['eael_post_terms_on_image_hover'] ) {
|
|
echo Helper::get_terms_as_list($settings['eael_post_terms'], $settings['eael_post_terms_max_length']);
|
|
}
|
|
|
|
echo '<div class="eael-entry-overlay ' . $settings['eael_post_grid_hover_animation'] . '">';
|
|
if (isset($settings['eael_post_grid_bg_hover_icon_new']['url'])) {
|
|
echo '<img src="' . esc_url($settings['eael_post_grid_bg_hover_icon_new']['url']) . '" alt="' . esc_attr(get_post_meta($settings['eael_post_grid_bg_hover_icon_new']['id'], '_wp_attachment_image_alt', true)) . '" />';
|
|
} else {
|
|
echo '<i class="' . $settings['eael_post_grid_bg_hover_icon_new']['value'] . '" aria-hidden="true"></i>';
|
|
}
|
|
|
|
echo '<a href="' . get_the_permalink() . '"' . $link_settings['image_link_nofollow'] . '' . $link_settings['image_link_target_blank'] . '></a>';
|
|
echo '</div>';
|
|
|
|
echo '<div class="eael-entry-thumbnail '.$enable_ratio.'">
|
|
'.$thumbnail_html.'
|
|
</div>
|
|
</div>';
|
|
}
|
|
|
|
if ($settings['eael_show_title'] || $settings['eael_show_meta'] || $settings['eael_show_excerpt']) {
|
|
echo '<div class="eael-entry-wrapper">';
|
|
if ($settings['eael_show_title']) {
|
|
echo '<header class="eael-entry-header"><' . $title_tag . ' class="eael-entry-title">';
|
|
echo '<a
|
|
class="eael-grid-post-link"
|
|
href="' . get_the_permalink() . '"
|
|
title="' . get_the_title() . '"' . $link_settings['title_link_nofollow'] . '' . $link_settings['title_link_target_blank'] . '>';
|
|
|
|
if (empty($settings['eael_title_length'])) {
|
|
echo get_the_title();
|
|
} else {
|
|
echo implode(" ", array_slice(explode(" ", get_the_title()), 0, $settings['eael_title_length']));
|
|
}
|
|
echo '</a>';
|
|
echo '</' . $title_tag . '></header>';
|
|
}
|
|
|
|
if ($settings['meta_position'] == 'meta-entry-header') {
|
|
echo '<div class="eael-entry-header-after style-two">';
|
|
if ( isset( $settings['eael_show_avatar_two'] ) && 'yes' === $settings['eael_show_avatar_two'] ) {
|
|
echo '<div class="eael-author-avatar"><a href="' . get_author_posts_url(get_the_author_meta('ID')) . '">' . get_avatar(get_the_author_meta('ID'), 96) . '</a></div>';
|
|
}
|
|
|
|
if ($settings['eael_show_meta']) {
|
|
echo '<div class="eael-entry-meta">';
|
|
if ( isset( $settings['eael_show_author_two'] ) && 'yes' === $settings['eael_show_author_two'] ) {
|
|
echo '<span class="eael-posted-by">' . get_the_author_posts_link() . '</span>';
|
|
}
|
|
if ($settings['eael_show_date'] === 'yes') {
|
|
echo '<span class="eael-posted-on eael-meta-posted-on"><i class="far fa-clock"></i><time datetime="' . get_the_date() . '">' . get_the_date() . '</time></span>';
|
|
}
|
|
echo '</div>';
|
|
}
|
|
|
|
echo '</div>';
|
|
}
|
|
|
|
if ($settings['eael_show_excerpt'] || $settings['eael_show_read_more_button']) {
|
|
echo '<div class="eael-entry-content">
|
|
<div class="eael-grid-post-excerpt">';
|
|
if ($settings['eael_show_excerpt']) {
|
|
if (empty($settings['eael_excerpt_length'])) {
|
|
echo '<p>' . strip_shortcodes(get_the_excerpt() ? get_the_excerpt() : get_the_content()) . '</p>';
|
|
} else {
|
|
echo '<p>' . wp_trim_words( strip_shortcodes(get_the_excerpt() ? get_the_excerpt() : get_the_content()), $settings['eael_excerpt_length'], $settings['excerpt_expanison_indicator'] ) . '</p>';
|
|
}
|
|
}
|
|
|
|
if ($settings['eael_show_read_more_button']) {
|
|
echo '<a
|
|
href="' . get_the_permalink() . '"
|
|
class="eael-post-elements-readmore-btn"' . $link_settings['read_more_link_nofollow'] . '' . $link_settings['read_more_link_target_blank'] . '>' . Helper::eael_wp_kses($settings['read_more_button_text']) . '</a>';
|
|
}
|
|
echo '</div>
|
|
</div>';
|
|
}
|
|
|
|
if ($settings['meta_position'] == 'meta-entry-footer') {
|
|
echo '<div class="eael-entry-header-after style-two">';
|
|
if ( isset( $settings['eael_show_avatar_two'] ) && 'yes' === $settings['eael_show_avatar_two'] ) {
|
|
echo '<div class="eael-author-avatar"><a href="' . get_author_posts_url(get_the_author_meta('ID')) . '">' . get_avatar(get_the_author_meta('ID'), 96) . '</a></div>';
|
|
}
|
|
|
|
echo '<div class="eael-entry-meta">';
|
|
if ( isset( $settings['eael_show_author_two'] ) && 'yes' === $settings['eael_show_author_two'] ) {
|
|
echo '<span class="eael-posted-by style-two-footer">' . get_the_author_posts_link() . '</span>';
|
|
}
|
|
if ( 'yes' === $settings['eael_show_date'] ) {
|
|
echo '<span class="eael-meta-posted-on"><i class="far fa-clock"></i><time datetime="' . get_the_date() . '">' . get_the_date() . '</time></span>';
|
|
}
|
|
if ( 'yes' === $settings['eael_show_post_terms'] ) {
|
|
if ($settings['eael_post_terms'] === 'category') {
|
|
$terms = get_the_category();
|
|
}
|
|
if ($settings['eael_post_terms'] === 'tags') {
|
|
$terms = get_the_tags();
|
|
}
|
|
|
|
//For custom post type
|
|
$get_custom_post_type = get_post_type( get_the_ID() );
|
|
$get_custom_taxonomy = $settings["eael_{$get_custom_post_type}_terms"];
|
|
|
|
if ( $settings[ 'eael_post_terms' ] === $get_custom_taxonomy ) {
|
|
$terms = wp_get_post_terms( get_the_ID(), $get_custom_taxonomy );
|
|
}
|
|
|
|
if (!empty($terms)) {
|
|
$html = '<ul class="post-meta-categories">';
|
|
$count = 0;
|
|
|
|
$eael_post_terms_separator = ! empty( $settings['eael_post_terms_separator'] ) ? wp_strip_all_tags( $settings['eael_post_terms_separator'] ) : '';
|
|
foreach ($terms as $term) {
|
|
if ($count === intval($settings['eael_post_terms_max_length'])) {
|
|
break;
|
|
}
|
|
if ($count === 0) {
|
|
$html .= '<li class="meta-cat-icon"><i class="far fa-folder-open"></i></li>';
|
|
}
|
|
|
|
$is_last_item = $count + 1 === intval($settings['eael_post_terms_max_length']) || $count + 1 === count($terms);
|
|
$eael_post_terms_separator = $is_last_item ? '' : $eael_post_terms_separator;
|
|
|
|
$link = ($settings['eael_post_terms'] === 'category') ? get_category_link($term->term_id) : get_tag_link($term->term_id);
|
|
$html .= '<li>';
|
|
$html .= '<a href="' . esc_url($link) . '">';
|
|
$html .= $term->name . " " . esc_html( $eael_post_terms_separator );
|
|
$html .= '</a>';
|
|
$html .= '</li>';
|
|
$count++;
|
|
}
|
|
$html .= '</ul>';
|
|
echo $html;
|
|
}
|
|
}
|
|
echo '</div>';
|
|
echo '</div>';
|
|
}
|
|
echo '</div>';
|
|
}
|
|
echo '</div>
|
|
</div>
|
|
</article>';
|
|
} else if ($settings['eael_post_grid_preset_style'] === 'three') {
|
|
echo '<article class="eael-grid-post eael-post-grid-column" data-id="' . get_the_ID() . '">
|
|
<div class="eael-grid-post-holder">
|
|
<div class="eael-grid-post-holder-inner">';
|
|
|
|
if (has_post_thumbnail() && $settings['eael_show_image'] == 'yes') {
|
|
|
|
echo '<div class="eael-entry-media">';
|
|
if ( 'yes' === $settings['eael_show_post_terms'] && 'yes' === $settings['eael_post_terms_on_image_hover'] ) {
|
|
echo Helper::get_terms_as_list($settings['eael_post_terms'], $settings['eael_post_terms_max_length']);
|
|
}
|
|
|
|
echo '<div class="eael-entry-overlay ' . $settings['eael_post_grid_hover_animation'] . '">';
|
|
|
|
if (isset($settings['eael_post_grid_bg_hover_icon_new']['url'])) {
|
|
echo '<img src="' . esc_url($settings['eael_post_grid_bg_hover_icon_new']['url']) . '" alt="' . esc_attr(get_post_meta($settings['eael_post_grid_bg_hover_icon_new']['id'], '_wp_attachment_image_alt', true)) . '" />';
|
|
} else {
|
|
echo '<i class="' . $settings['eael_post_grid_bg_hover_icon_new']['value'] . '" aria-hidden="true"></i>';
|
|
}
|
|
echo '<a href="' . get_the_permalink() . '"' . $link_settings['image_link_nofollow'] . '' . $link_settings['image_link_target_blank'] . '></a>';
|
|
echo '</div>';
|
|
|
|
echo '<div class="eael-entry-thumbnail '.$enable_ratio.'">
|
|
'.$thumbnail_html.'
|
|
</div>
|
|
</div>';
|
|
if ($settings['meta_position'] == 'meta-entry-header' && $settings['eael_show_date'] === 'yes') {
|
|
echo '<span class="eael-meta-posted-on"><time datetime="' . get_the_date() . '"><span>' . get_the_date('d') . '</span>' . get_the_date('F') . '</time></span>';
|
|
}
|
|
}
|
|
|
|
if ($settings['eael_show_title'] || $settings['eael_show_meta'] || $settings['eael_show_excerpt']) {
|
|
echo '<div class="eael-entry-wrapper">';
|
|
|
|
if ($settings['eael_show_title']) {
|
|
echo '<header class="eael-entry-header"><' . $title_tag . ' class="eael-entry-title">';
|
|
echo '<a
|
|
class="eael-grid-post-link"
|
|
href="' . get_the_permalink() . '"
|
|
title="' . get_the_title() . '"' . $link_settings['title_link_nofollow'] . '' . $link_settings['title_link_target_blank'] . '>';
|
|
|
|
if (empty($settings['eael_title_length'])) {
|
|
echo get_the_title();
|
|
} else {
|
|
echo implode(" ", array_slice(explode(" ", get_the_title()), 0, $settings['eael_title_length']));
|
|
}
|
|
echo '</a>';
|
|
/*
|
|
* used Helper::eael_validate_html_tag() method to validate $title_tag
|
|
*/
|
|
echo '</' . $title_tag . '></header>';
|
|
}
|
|
|
|
if ($settings['meta_position'] == 'meta-entry-footer') {
|
|
if ($settings['eael_show_meta']) {
|
|
echo '<div class="eael-entry-meta">';
|
|
if ( isset( $settings['eael_show_author_three'] ) && 'yes' === $settings['eael_show_author_three'] ) {
|
|
echo '<span class="eael-posted-by">' . get_the_author_posts_link() . '</span>';
|
|
}
|
|
if ($settings['eael_show_date'] === 'yes') {
|
|
echo '<span class="eael-posted-on"><time datetime="' . get_the_date() . '">' . get_the_date() . '</time></span>';
|
|
}
|
|
echo '</div>';
|
|
}
|
|
}
|
|
|
|
if ($settings['eael_show_excerpt'] || $settings['eael_show_read_more_button']) {
|
|
echo '<div class="eael-entry-content">
|
|
<div class="eael-grid-post-excerpt">';
|
|
if ($settings['eael_show_excerpt']) {
|
|
if (empty($settings['eael_excerpt_length'])) {
|
|
echo '<p>' . strip_shortcodes(get_the_excerpt() ? get_the_excerpt() : get_the_content()) . '</p>';
|
|
} else {
|
|
echo '<p>' . wp_trim_words( strip_shortcodes(get_the_excerpt() ? get_the_excerpt() : get_the_content()), $settings['eael_excerpt_length'], $settings['excerpt_expanison_indicator']) . '</p>';
|
|
}
|
|
}
|
|
|
|
if ($settings['eael_show_read_more_button']) {
|
|
echo '<a
|
|
href="' . get_the_permalink() . '"
|
|
class="eael-post-elements-readmore-btn"' . $link_settings['read_more_link_nofollow'] . '' . $link_settings['read_more_link_target_blank'] . '>' . Helper::eael_wp_kses($settings['read_more_button_text']) . '</a>';
|
|
}
|
|
echo '</div>
|
|
</div>';
|
|
}
|
|
|
|
echo '</div>';
|
|
}
|
|
echo '</div>
|
|
</div>
|
|
</article>';
|
|
} else {
|
|
echo '<article class="eael-grid-post eael-post-grid-column" data-id="' . esc_attr( get_the_ID() ) . '">
|
|
<div class="eael-grid-post-holder">
|
|
<div class="eael-grid-post-holder-inner">';
|
|
|
|
if (has_post_thumbnail() && $settings['eael_show_image'] == 'yes') {
|
|
|
|
echo '<div class="eael-entry-media">';
|
|
if ( 'yes' === $settings['eael_show_post_terms'] && 'yes' === $settings['eael_post_terms_on_image_hover'] ) {
|
|
echo Helper::get_terms_as_list($settings['eael_post_terms'], $settings['eael_post_terms_max_length']);
|
|
}
|
|
|
|
echo '<div class="eael-entry-overlay ' . $settings['eael_post_grid_hover_animation'] . '">';
|
|
|
|
if (isset($settings['eael_post_grid_bg_hover_icon_new']['url'])) {
|
|
echo '<img src="' . esc_url($settings['eael_post_grid_bg_hover_icon_new']['url']) . '" alt="' . esc_attr(get_post_meta($settings['eael_post_grid_bg_hover_icon_new']['id'], '_wp_attachment_image_alt', true)) . '" />';
|
|
} else {
|
|
if (($settings['eael_post_grid_bg_hover_icon_new']['library']) == 'svg') {
|
|
echo '<img src="' . esc_url($settings['eael_post_grid_bg_hover_icon_new']['value']['url']) . '" alt="' . esc_attr(get_post_meta($settings['eael_post_grid_bg_hover_icon_new']['value']['id'], '_wp_attachment_image_alt', true)) . '" />';
|
|
} else {
|
|
echo '<i class="' . $settings['eael_post_grid_bg_hover_icon_new']['value'] . '" aria-hidden="true"></i>';
|
|
}
|
|
}
|
|
echo '<a href="' . get_the_permalink() . '"' . $link_settings['image_link_nofollow'] . '' . $link_settings['image_link_target_blank'] . '></a>';
|
|
echo '</div>';
|
|
|
|
echo '<div class="eael-entry-thumbnail '.$enable_ratio.'">
|
|
'.$thumbnail_html.'
|
|
</div>
|
|
</div>';
|
|
}
|
|
|
|
if ($settings['eael_show_title'] || $settings['eael_show_meta'] || $settings['eael_show_excerpt']) {
|
|
echo '<div class="eael-entry-wrapper">';
|
|
if ($settings['eael_show_title']) {
|
|
echo '<header class="eael-entry-header"><' . $title_tag . ' class="eael-entry-title">';
|
|
echo '<a
|
|
class="eael-grid-post-link"
|
|
href="' . get_the_permalink() . '"
|
|
title="' . get_the_title() . '"' . $link_settings['title_link_nofollow'] . '' . $link_settings['title_link_target_blank'] . '>';
|
|
|
|
if (empty($settings['eael_title_length'])) {
|
|
echo get_the_title();
|
|
} else {
|
|
echo implode(" ", array_slice(explode(" ", get_the_title()), 0, $settings['eael_title_length']));
|
|
}
|
|
echo '</a>';
|
|
echo '</' . $title_tag . '></header>';
|
|
}
|
|
if ($settings['meta_position'] == 'meta-entry-header') {
|
|
echo '<div class="eael-entry-header-after">';
|
|
if ( isset( $settings['eael_show_avatar'] ) && 'yes' === $settings['eael_show_avatar'] ) {
|
|
echo '<div class="eael-author-avatar"><a href="' . get_author_posts_url(get_the_author_meta('ID')) . '">' . get_avatar(get_the_author_meta('ID'), 96) . '</a></div>';
|
|
}
|
|
|
|
if ($settings['eael_show_meta']) {
|
|
echo '<div class="eael-entry-meta">';
|
|
if ( isset( $settings['eael_show_author'] ) && 'yes' === $settings['eael_show_author'] ) {
|
|
echo '<span class="eael-posted-by">' . get_the_author_posts_link() . '</span>';
|
|
}
|
|
if ($settings['eael_show_date'] === 'yes') {
|
|
echo '<span class="eael-posted-on"><time datetime="' . get_the_date() . '">' . get_the_date() . '</time></span>';
|
|
}
|
|
echo '</div>';
|
|
}
|
|
|
|
echo '</div>';
|
|
}
|
|
|
|
if ($settings['eael_show_excerpt'] || $settings['eael_show_read_more_button']) {
|
|
echo '<div class="eael-entry-content">
|
|
<div class="eael-grid-post-excerpt">';
|
|
if ($settings['eael_show_excerpt']) {
|
|
if (empty($settings['eael_excerpt_length'])) {
|
|
echo '<p>' . strip_shortcodes(get_the_excerpt() ? get_the_excerpt() : get_the_content()) . '</p>';
|
|
} else {
|
|
echo '<p>' . wp_trim_words( strip_shortcodes(get_the_excerpt() ? get_the_excerpt() : get_the_content()), $settings['eael_excerpt_length'], $settings['excerpt_expanison_indicator']) . '</p>';
|
|
}
|
|
}
|
|
|
|
if ($settings['eael_show_read_more_button']) {
|
|
echo '<a
|
|
href="' . get_the_permalink() . '"
|
|
class="eael-post-elements-readmore-btn"' . $link_settings['read_more_link_nofollow'] . '' . $link_settings['read_more_link_target_blank'] . '>' . Helper::eael_wp_kses($settings['read_more_button_text']) . '</a>';
|
|
}
|
|
echo '</div>
|
|
</div>';
|
|
}
|
|
|
|
if ($settings['eael_show_meta'] && $settings['meta_position'] == 'meta-entry-footer') {
|
|
echo '<div class="eael-entry-footer">';
|
|
if ( isset( $settings['eael_show_avatar'] ) && 'yes' === $settings['eael_show_avatar'] ) {
|
|
echo '<div class="eael-author-avatar"><a href="' . get_author_posts_url(get_the_author_meta('ID')) . '">' . get_avatar(get_the_author_meta('ID'), 96) . '</a></div>';
|
|
}
|
|
|
|
if ($settings['eael_show_meta']) {
|
|
echo '<div class="eael-entry-meta">';
|
|
if ( isset( $settings['eael_show_author'] ) && 'yes' === $settings['eael_show_author'] ) {
|
|
echo '<span class="eael-posted-by">' . get_the_author_posts_link() . '</span>';
|
|
}
|
|
if ($settings['eael_show_date'] === 'yes') {
|
|
echo '<span class="eael-posted-on"><time datetime="' . get_the_date() . '">' . get_the_date() . '</time></span>';
|
|
}
|
|
echo '</div>';
|
|
}
|
|
|
|
echo '</div>';
|
|
}
|
|
|
|
echo '</div>';
|
|
}
|
|
echo '</div>
|
|
</div>
|
|
</article>';
|
|
}
|