whoami7 - Manager
:
/
home
/
techyfnq
/
public_html
/
wp-content
/
plugins
/
site-reviews
/
views
/
pages
/
welcome
/
upgrade
/
Upload File:
files >> //home/techyfnq/public_html/wp-content/plugins/site-reviews/views/pages/welcome/upgrade/v40.php
<?php defined('ABSPATH') || exit; ?> <div class="glsr-card postbox is-fullwidth"> <h3 class="glsr-card-heading"> <button type="button" class="glsr-accordion-trigger" aria-expanded="false" aria-controls="upgrade-v400"> <span class="title">Version 4.0</span> <span class="icon"></span> </button> </h3> <div id="upgrade-v400" class="inside"> <h2>Meta Keys</h2> <p><em>Likelihood Of Impact: <span class="impact-low">Low</span></em></p> <div class="glsr-notice-inline components-notice is-info"> <p class="components-notice__content"> This only applies to you if you used hooks, helper functions, or otherwise to make custom modifications to your reviews. </p> </div> <p>The Meta Keys that Site Reviews 4.0 uses to store information to reviews are now protected (they begin with an underscore) so that they don't show up in the Custom Fields Meta Box on other pages. This change can potentially affect you if one of the following cases apply:</p> <ul> <li>You are using the <code>WP_Query</code> class or the <code>get_posts</code> function to fetch reviews and are setting the <code>meta_key</code> or <code>meta_query</code> options</li> <li>You are using the <code>pre_get_posts</code> WordPress filter to modify the Site Reviews <code>meta_query</code></li> <li>You are using the <code>update_postmeta</code> WordPress filter with reviews and are checking the <code>meta_key</code> value</li> </ul> <p>If any of the above cases apply to you, please make sure that you prefix the Meta Keys with an underscore.</p> <p>Here is a <code>get_posts</code> example:</p> <pre><code class="language-php">// OLD CODE $reviews = get_posts([ 'meta_query' => [['key' => 'assigned_to', 'value' => 123]], 'post_type' => 'site-review', ]); // NEW CODE: $reviews = get_posts([ 'meta_query' => [['key' => '_assigned_to', 'value' => 123]], // here we changed the meta_key 'post_type' => 'site-review', ]); </code></pre> <p>Here is a <code>pre_get_posts</code> example:</p> <pre><code class="language-php">// OLD CODE add_action('pre_get_posts', function ($query) { if ($query->get('post_type') === 'site-review') { $meta = (array) $query->get('meta_query'); $index = array_search('rating', wp_list_pluck($meta, 'key')); // ... } }); // NEW CODE add_action('pre_get_posts', function ($query) { if ($query->get('post_type') === 'site-review') { $meta = (array) $query->get('meta_query'); $index = array_search('_rating', wp_list_pluck($meta, 'key')); // here we changed the meta_key // ... } });</code></pre> <p>Here is a <code>update_postmeta</code> example:</p> <pre><code class="language-php">// OLD CODE add_action('update_postmeta', function ($metaId, $postId, $metaKey) { $review = apply_filters('glsr_get_review', null, $postId); if (!empty($review->ID) && 'response' === $metaKey) { // ... } }, 10, 3); // NEW CODE add_action('update_postmeta', function ($metaId, $postId, $metaKey) { $review = apply_filters('glsr_get_review', null, $postId); if (!empty($review->ID) && '_response' === $metaKey) { // here we changed the meta_key // ... } }, 10, 3);</code></pre> <ul> </div> </div>
Copyright ©2021 || Defacer Indonesia