| 1 |
<?php |
| 2 |
namespace UltimatePostKit\Modules\RambleGrid; |
| 3 |
use UltimatePostKit\Traits\Global_Widget_Functions; |
| 4 |
use Elementor\Icons_Manager; |
| 5 |
|
| 6 |
use UltimatePostKit\Base\Ultimate_Post_Kit_Module_Base; |
| 7 |
use UltimatePostKit\Utils; |
| 8 |
|
| 9 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly |
| 10 |
|
| 11 |
class Module extends Ultimate_Post_Kit_Module_Base { |
| 12 |
|
| 13 |
use Global_Widget_Functions; |
| 14 |
|
| 15 |
public function __construct() { |
| 16 |
parent::__construct(); |
| 17 |
|
| 18 |
add_action( 'wp_ajax_nopriv_upk_ramble_grid_loadmore_posts', [ $this, 'callback_ajax_loadmore_posts' ] ); |
| 19 |
add_action( 'wp_ajax_upk_ramble_grid_loadmore_posts', [ $this, 'callback_ajax_loadmore_posts' ] ); |
| 20 |
} |
| 21 |
|
| 22 |
public function get_name() { |
| 23 |
return 'ramble-grid'; |
| 24 |
} |
| 25 |
|
| 26 |
public function get_widgets() { |
| 27 |
|
| 28 |
$widgets = [ |
| 29 |
'Ramble_Grid', |
| 30 |
]; |
| 31 |
|
| 32 |
return $widgets; |
| 33 |
} |
| 34 |
|
| 35 |
public function callback_ajax_loadmore_posts() { |
| 36 |
|
| 37 |
$settings = []; |
| 38 |
|
| 39 |
if ( isset( $_POST['settings'] ) && is_array( $_POST['settings'] ) ) { |
| 40 |
$settings = map_deep( wp_unslash( $_POST['settings'] ), 'sanitize_text_field' ); |
| 41 |
} |
| 42 |
|
| 43 |
$post_type = $settings['posts_source'] ?? 'post'; |
| 44 |
|
| 45 |
$settings = array_merge( |
| 46 |
[ |
| 47 |
'posts_source' => 'post', |
| 48 |
'posts_orderby' => 'date', |
| 49 |
'posts_order' => 'DESC', |
| 50 |
'posts_ignore_sticky_posts' => 'no', |
| 51 |
'posts_only_with_featured_image' => 'no', |
| 52 |
'posts_select_date' => '', |
| 53 |
'posts_exclude_by' => [], |
| 54 |
'posts_include_by' => [], |
| 55 |
'posts_per_page' => isset( $_POST['per_page'] ) ? absint( $_POST['per_page'] ) : 0, |
| 56 |
'posts_offset' => isset( $_POST['offset'] ) ? absint( $_POST['offset'] ) : 0, |
| 57 |
], |
| 58 |
$settings |
| 59 |
); |
| 60 |
|
| 61 |
$ajaxposts = $this->query_args( $settings ); |
| 62 |
|
| 63 |
ob_start(); |
| 64 |
$found_posts = false; |
| 65 |
|
| 66 |
if ( $ajaxposts->have_posts() ) { |
| 67 |
|
| 68 |
while ( $ajaxposts->have_posts() ) { |
| 69 |
$ajaxposts->the_post(); |
| 70 |
$found_posts = true; |
| 71 |
|
| 72 |
$title = get_the_title(); |
| 73 |
$post_link = esc_url( get_permalink() ); |
| 74 |
$author_url = esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); |
| 75 |
$author_name = esc_html( get_the_author() ); |
| 76 |
$meta_sep = $settings['meta_separator'] ?? '/'; |
| 77 |
$title_tag = Utils::get_valid_html_tag($settings['title_tags']); |
| 78 |
|
| 79 |
?> |
| 80 |
<div <?php if ( ! empty( $settings['global_link'] ) && $settings['global_link'] === 'yes' ) { printf( 'onclick="window.open(\'%s\', \'_self\')"', esc_url( $post_link ) ); } ?> class="upk-item"> |
| 81 |
<div class="upk-image-wrap"> |
| 82 |
<?php $this->render_image(get_post_thumbnail_id(), 'large'); ?> |
| 83 |
|
| 84 |
<div class="upk-content"> |
| 85 |
<div class="upk-default-show"> |
| 86 |
<div class="upk-date-cetagory-wrap"> |
| 87 |
<div class="upk-date"> |
| 88 |
<?php |
| 89 |
if ($settings['show_date'] === 'yes' && $settings['human_diff_time'] !== 'yes') { |
| 90 |
echo esc_html(get_the_date()); |
| 91 |
} |
| 92 |
if ($settings['human_diff_time'] === 'yes') { |
| 93 |
echo esc_html(ultimate_post_kit_post_time_diff($settings['human_diff_time_short'] !== 'yes' ? 'short' : '')); |
| 94 |
} |
| 95 |
?> |
| 96 |
</div> |
| 97 |
<?php if ($settings['show_time'] === 'yes') : ?> |
| 98 |
<div class="upk-post-time"> |
| 99 |
<i class="upk-icon-clock" aria-hidden="true"></i> |
| 100 |
<?php echo esc_html(get_the_time()); ?> |
| 101 |
</div> |
| 102 |
<?php endif; ?> |
| 103 |
|
| 104 |
<?php if ($settings['show_category'] === 'yes') : ?> |
| 105 |
<div class="upk-category"> |
| 106 |
<?php echo wp_kses_post(upk_get_category($post_type)); ?> |
| 107 |
</div> |
| 108 |
<?php endif; ?> |
| 109 |
</div> |
| 110 |
|
| 111 |
<?php if ($settings['show_title'] === 'yes') : ?> |
| 112 |
<<?php echo esc_attr( $title_tag ); ?> class="upk-title"> |
| 113 |
<a |
| 114 |
href="<?php echo esc_url($post_link); ?>" |
| 115 |
title="<?php echo esc_attr($title); ?>" |
| 116 |
class="title-animation-<?php echo esc_attr($settings['title_style']); ?>" |
| 117 |
> |
| 118 |
<?php echo esc_html($title); ?> |
| 119 |
</a> |
| 120 |
</<?php echo esc_attr( $title_tag ); ?>> |
| 121 |
<?php endif; ?> |
| 122 |
</div> |
| 123 |
|
| 124 |
<div class="upk-default-hide"> |
| 125 |
<?php if ( |
| 126 |
$settings['show_author_avatar'] === 'yes' || |
| 127 |
$settings['show_author_name'] === 'yes' || |
| 128 |
$settings['show_date'] === 'yes' || |
| 129 |
$settings['show_reading_time'] === 'yes' |
| 130 |
) : ?> |
| 131 |
<div class="upk-meta"> |
| 132 |
<?php if ($settings['show_author_avatar'] === 'yes') : ?> |
| 133 |
<div class="upk-author-image"> |
| 134 |
<?php echo wp_kses_post(get_avatar(get_the_author_meta('ID'), 48)); ?> |
| 135 |
</div> |
| 136 |
<?php endif; ?> |
| 137 |
|
| 138 |
<div class="upk-author-name-date-wrap"> |
| 139 |
<?php if ($settings['show_author_name'] === 'yes') : ?> |
| 140 |
<div class="upk-author-name"> |
| 141 |
<a href="<?php echo esc_url($author_url); ?>"><?php echo esc_html($author_name); ?></a> |
| 142 |
</div> |
| 143 |
<?php endif; ?> |
| 144 |
|
| 145 |
<?php if ($settings['show_date'] === 'yes' || $settings['show_reading_time'] === 'yes') : ?> |
| 146 |
<div class="upk-date-reading-time" data-separator="<?php echo esc_html($meta_sep); ?>"> |
| 147 |
<?php if ($settings['show_date'] === 'yes') : ?> |
| 148 |
<div class="upk-date"> |
| 149 |
<?php |
| 150 |
if ($settings['human_diff_time'] === 'yes') { |
| 151 |
echo esc_html(ultimate_post_kit_post_time_diff( |
| 152 |
(($settings['human_diff_time_short'] ?? 'no') === 'yes') ? 'short' : '' |
| 153 |
)); |
| 154 |
} else { |
| 155 |
echo get_the_date(); |
| 156 |
} |
| 157 |
?> |
| 158 |
</div> |
| 159 |
<?php endif; ?> |
| 160 |
|
| 161 |
<?php if (function_exists('_is_upk_pro_activated') && _is_upk_pro_activated() && function_exists('ultimate_post_kit_reading_time') && ($settings['show_reading_time'] ?? '') === 'yes') : ?> |
| 162 |
<div class="upk-reading-time" data-separator="<?php echo esc_html($meta_sep); ?>"> |
| 163 |
<?php echo esc_html(ultimate_post_kit_reading_time(get_the_content(), $settings['avg_reading_speed'], $settings['hide_seconds'] ?? 'no', $settings['hide_minutes'] ?? 'no' ) ); ?> |
| 164 |
</div> |
| 165 |
<?php endif; ?> |
| 166 |
</div> |
| 167 |
<?php endif; ?> |
| 168 |
</div> |
| 169 |
</div> |
| 170 |
<?php endif; ?> |
| 171 |
|
| 172 |
<?php if ($settings['show_excerpt'] === 'yes') : ?> |
| 173 |
<div class="upk-text"> |
| 174 |
<?php |
| 175 |
if (has_excerpt()) { |
| 176 |
the_excerpt(); |
| 177 |
} else { |
| 178 |
if (function_exists('ultimate_post_kit_custom_excerpt')) { |
| 179 |
echo wp_kses_post(ultimate_post_kit_custom_excerpt(intval($settings['excerpt_length'] ?? 20), false, '')); |
| 180 |
} else { |
| 181 |
echo esc_html(wp_trim_words(wp_strip_all_tags(get_the_content()), intval($settings['excerpt_length'] ?? 20))); |
| 182 |
} |
| 183 |
} |
| 184 |
?> |
| 185 |
</div> |
| 186 |
<?php endif; ?> |
| 187 |
</div> |
| 188 |
</div> |
| 189 |
|
| 190 |
<div class="upk-btn-comments-wrap"> |
| 191 |
<div class="upk-btn-wrap upk-flex"> |
| 192 |
<?php if ($settings['show_readmore'] === 'yes') : ?> |
| 193 |
<a href="<?php echo esc_url($post_link); ?>" class="upk-readmore" target="<?php echo esc_attr($settings['upk_link_new_tab'] === 'yes' ? '_blank' : '_self'); ?>"> |
| 194 |
<span class="upk-flex upk-flex-middle"> |
| 195 |
<?php echo esc_html($settings['readmore_text'] ?? __('Read More', 'ultimate-post-kit')); ?> |
| 196 |
<?php if ($settings['readmore_icon']['value']) : ?> |
| 197 |
<span class="upk-readmore-btn-icon upk-flex-align-<?php echo esc_attr($settings['icon_align']); ?>"> |
| 198 |
<?php Icons_Manager::render_icon($settings['readmore_icon'], ['aria-hidden' => 'true', 'class' => 'fa-fw']); ?> |
| 199 |
</span> |
| 200 |
<?php endif; ?> |
| 201 |
</span> |
| 202 |
</a> |
| 203 |
<?php endif; ?> |
| 204 |
</div> |
| 205 |
|
| 206 |
<?php if ($settings['show_comments'] === 'yes') : ?> |
| 207 |
<div class="upk-comments"> |
| 208 |
<?php echo esc_html( $this->upk_get_formatted_comments_count( get_the_ID() ) ); ?> |
| 209 |
</div> |
| 210 |
<?php endif; ?> |
| 211 |
</div> |
| 212 |
</div> |
| 213 |
</div> |
| 214 |
<?php |
| 215 |
} |
| 216 |
} |
| 217 |
|
| 218 |
wp_reset_postdata(); |
| 219 |
$markup = ob_get_clean(); |
| 220 |
|
| 221 |
wp_send_json( |
| 222 |
[ |
| 223 |
'success' => $found_posts, |
| 224 |
'markup' => $found_posts ? $markup : esc_html__( 'No more found', 'ultimate-post-kit' ), |
| 225 |
] |
| 226 |
); |
| 227 |
} |
| 228 |
} |
| 229 |
|