PluginProbe
Ultimate Post Kit – Elementor Post Grid, Post Carousel, Post Slider & Blog Layout Widgets / trunk
Ultimate Post Kit – Elementor Post Grid, Post Carousel, Post Slider & Blog Layout Widgets vtrunk
4.5.4 4.2.1 4.2.2 4.2.3 4.5.0 4.5.2 4.5.3 4.2.0 4.1.18 4.1.17 4.1.16 4.1.15 4.1.14 4.1.13 4.1.12 4.1.11 4.1.10 4.1.9 4.1.8 4.0.9 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 All 146 releases
← All changes | modules/maple-grid/module.php +12 -8 4.1.10trunk View file →
@@ -31,9 +31,15 @@
31 31 return $widgets;
32 32 }
33 33
34 34 public function callback_ajax_loadmore_posts() {
35 + // Verify the front-end nonce (sent by UltimatePostKitConfig.nonce) before
36 + // processing this public load-more request.
37 + if ( ! check_ajax_referer( 'upk-site', 'nonce', false ) ) {
38 + wp_send_json_error( array( 'message' => esc_html__( 'Security check failed.', 'ultimate-post-kit' ) ), 403 );
39 + }
35 40
41 +
36 42 $settings = [];
37 43
38 44 if ( isset( $_POST['settings'] ) && is_array( $_POST['settings'] ) ) {
39 45 $settings = map_deep( wp_unslash( $_POST['settings'] ), 'sanitize_text_field' );
@@ -56,8 +62,11 @@
56 62 ],
57 63 $settings
58 64 );
59 65
66 + // Fill display flags the request may have omitted (see trait) before the render loop reads them.
67 + $settings = array_merge( $this->loadmore_display_defaults(), $settings );
68 +
60 69 $ajaxposts = $this->query_args( $settings );
61 70
62 71 ob_start();
63 72 $found_posts = false;
@@ -80,15 +89,10 @@
80 89 $meta_sep = $settings['meta_separator'] ?? '-';
81 90 $grid_style = $settings['grid_style'] ?? '1';
82 91 $title_tag = Utils::get_valid_html_tag($settings['title_tags']);
83 92
84 - $onclick = '';
85 - if ( ! empty( $settings['global_link'] ) && $settings['global_link'] === 'yes' ) {
86 - $onclick = 'onclick="window.open(\'' . esc_url( $post_link ) . '\', \'_self\')"';
87 - }
88 -
89 93 ?>
90 - <div <?php echo $onclick; ?> class="upk-item">
94 + <div <?php if ( ! empty( $settings['global_link'] ) && $settings['global_link'] === 'yes' ) { printf( 'onclick="window.open(\'%s\', \'_self\')"', esc_url( $post_link ) ); } ?> class="upk-item">
91 95 <div class="upk-item-box">
92 96 <div class="upk-image-wrap">
93 97 <div class="upk-main-image">
94 98 <img class="upk-img" src="<?php echo esc_url( $image_src ); ?>" alt="<?php echo esc_attr( $title ); ?>">
@@ -197,11 +201,11 @@
197 201 if ( has_excerpt() ) {
198 202 the_excerpt();
199 203 } else {
200 204 if ( function_exists( 'ultimate_post_kit_custom_excerpt' ) ) {
201 - echo wp_kses_post( ultimate_post_kit_custom_excerpt( intval( $settings['excerpt_length'] ?? 20 ), false, '' ) );
205 + echo wp_kses_post( ultimate_post_kit_custom_excerpt( ultimate_post_kit_clamp_excerpt_length( $settings['excerpt_length'] ?? 20, 20 ), false, '' ) );
202 206 } else {
203 - echo esc_html( wp_trim_words( wp_strip_all_tags( get_the_content() ), intval( $settings['excerpt_length'] ?? 20 ) ) );
207 + echo esc_html( wp_trim_words( wp_strip_all_tags( get_the_content() ), ultimate_post_kit_clamp_excerpt_length( $settings['excerpt_length'] ?? 20, 20 ) ) );
204 208 }
205 209 }
206 210 ?>
207 211 </div>