@@ -21,7 +21,9 @@ |
||
21 | 21 | if( !class_exists( 'GL_Plugin_Check_v3' )) { |
22 | 22 | require_once __DIR__.'/activate.php'; |
23 | 23 | } |
24 | -if( !(new GL_Plugin_Check_v3( __FILE__ ))->canProceed() )return; |
|
24 | +if( !(new GL_Plugin_Check_v3( __FILE__ ))->canProceed() ) { |
|
25 | + return; |
|
26 | +} |
|
25 | 27 | require_once __DIR__.'/autoload.php'; |
26 | 28 | require_once __DIR__.'/compatibility.php'; |
27 | 29 | require_once __DIR__.'/helpers.php'; |
@@ -16,7 +16,9 @@ discard block |
||
16 | 16 | public function routeAdminPostRequest() |
17 | 17 | { |
18 | 18 | $request = $this->getRequest(); |
19 | - if( !$this->isValidPostRequest( $request ))return; |
|
19 | + if( !$this->isValidPostRequest( $request )) { |
|
20 | + return; |
|
21 | + } |
|
20 | 22 | check_admin_referer( $request['action'] ); |
21 | 23 | $this->routeRequest( 'admin', $request['action'], $request ); |
22 | 24 | } |
@@ -38,10 +40,16 @@ discard block |
||
38 | 40 | */ |
39 | 41 | public function routePublicPostRequest() |
40 | 42 | { |
41 | - if( is_admin() )return; |
|
43 | + if( is_admin() ) { |
|
44 | + return; |
|
45 | + } |
|
42 | 46 | $request = $this->getRequest(); |
43 | - if( !$this->isValidPostRequest( $request ))return; |
|
44 | - if( !$this->isValidPublicNonce( $request ))return; |
|
47 | + if( !$this->isValidPostRequest( $request )) { |
|
48 | + return; |
|
49 | + } |
|
50 | + if( !$this->isValidPublicNonce( $request )) { |
|
51 | + return; |
|
52 | + } |
|
45 | 53 | $this->routeRequest( 'public', $request['action'], $request ); |
46 | 54 | } |
47 | 55 | |
@@ -50,7 +58,9 @@ discard block |
||
50 | 58 | */ |
51 | 59 | protected function checkAjaxNonce( array $request ) |
52 | 60 | { |
53 | - if( !is_user_logged_in() )return; |
|
61 | + if( !is_user_logged_in() ) { |
|
62 | + return; |
|
63 | + } |
|
54 | 64 | if( !isset( $request['nonce'] )) { |
55 | 65 | $this->sendAjaxError( 'The request is missing a nonce', $request ); |
56 | 66 | } |
@@ -83,7 +83,9 @@ discard block |
||
83 | 83 | $reviewValues = []; |
84 | 84 | foreach( $review as $key => $value ) { |
85 | 85 | $method = glsr( Helper::class )->buildMethodName( $key, 'buildOption' ); |
86 | - if( !method_exists( $this, $method ))continue; |
|
86 | + if( !method_exists( $this, $method )) { |
|
87 | + continue; |
|
88 | + } |
|
87 | 89 | $reviewValues[$key] = $this->$method( $key, $value ); |
88 | 90 | } |
89 | 91 | $reviewValues = apply_filters( 'site-reviews/review/build/after', $reviewValues ); |
@@ -97,9 +99,13 @@ discard block |
||
97 | 99 | */ |
98 | 100 | protected function buildOptionAssignedTo( $key, $value ) |
99 | 101 | { |
100 | - if( $this->isHiddenOrEmpty( $key, 'settings.reviews.assigned_links.enabled' ))return; |
|
102 | + if( $this->isHiddenOrEmpty( $key, 'settings.reviews.assigned_links.enabled' )) { |
|
103 | + return; |
|
104 | + } |
|
101 | 105 | $post = get_post( intval( $value )); |
102 | - if( !( $post instanceof WP_Post ))return; |
|
106 | + if( !( $post instanceof WP_Post )) { |
|
107 | + return; |
|
108 | + } |
|
103 | 109 | $permalink = glsr( Builder::class )->a( get_the_title( $post->ID ), [ |
104 | 110 | 'href' => get_the_permalink( $post->ID ), |
105 | 111 | ]); |
@@ -114,7 +120,9 @@ discard block |
||
114 | 120 | */ |
115 | 121 | protected function buildOptionAuthor( $key, $value ) |
116 | 122 | { |
117 | - if( $this->isHidden( $key ))return; |
|
123 | + if( $this->isHidden( $key )) { |
|
124 | + return; |
|
125 | + } |
|
118 | 126 | $prefix = !$this->isOptionEnabled( 'settings.reviews.avatars.enabled' ) |
119 | 127 | ? apply_filters( 'site-reviews/review/author/prefix', '—' ) |
120 | 128 | : ''; |
@@ -128,7 +136,9 @@ discard block |
||
128 | 136 | */ |
129 | 137 | protected function buildOptionAvatar( $key, $value ) |
130 | 138 | { |
131 | - if( $this->isHidden( $key, 'settings.reviews.avatars.enabled' ))return; |
|
139 | + if( $this->isHidden( $key, 'settings.reviews.avatars.enabled' )) { |
|
140 | + return; |
|
141 | + } |
|
132 | 142 | $size = $this->getOption( 'settings.reviews.avatars.size', 40 ); |
133 | 143 | return $this->wrap( $key, glsr( Builder::class )->img([ |
134 | 144 | 'src' => $this->generateAvatar( $value ), |
@@ -145,7 +155,9 @@ discard block |
||
145 | 155 | protected function buildOptionContent( $key, $value ) |
146 | 156 | { |
147 | 157 | $text = $this->normalizeText( $value ); |
148 | - if( $this->isHiddenOrEmpty( $key, $text ))return; |
|
158 | + if( $this->isHiddenOrEmpty( $key, $text )) { |
|
159 | + return; |
|
160 | + } |
|
149 | 161 | return $this->wrap( $key, '<p>'.$text.'</p>' ); |
150 | 162 | } |
151 | 163 | |
@@ -156,7 +168,9 @@ discard block |
||
156 | 168 | */ |
157 | 169 | protected function buildOptionDate( $key, $value ) |
158 | 170 | { |
159 | - if( $this->isHidden( $key ))return; |
|
171 | + if( $this->isHidden( $key )) { |
|
172 | + return; |
|
173 | + } |
|
160 | 174 | $dateFormat = $this->getOption( 'settings.reviews.date.format', 'default' ); |
161 | 175 | if( $dateFormat == 'relative' ) { |
162 | 176 | $date = glsr( Date::class )->relative( $value ); |
@@ -177,7 +191,9 @@ discard block |
||
177 | 191 | */ |
178 | 192 | protected function buildOptionRating( $key, $value ) |
179 | 193 | { |
180 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
194 | + if( $this->isHiddenOrEmpty( $key, $value )) { |
|
195 | + return; |
|
196 | + } |
|
181 | 197 | $rating = glsr( Html::class )->buildPartial( 'star-rating', [ |
182 | 198 | 'rating' => $value, |
183 | 199 | ]); |
@@ -191,7 +207,9 @@ discard block |
||
191 | 207 | */ |
192 | 208 | protected function buildOptionResponse( $key, $value ) |
193 | 209 | { |
194 | - if( $this->isHiddenOrEmpty( $key, $value ))return; |
|
210 | + if( $this->isHiddenOrEmpty( $key, $value )) { |
|
211 | + return; |
|
212 | + } |
|
195 | 213 | $title = sprintf( __( 'Response from %s', 'site-reviews' ), get_bloginfo( 'name' )); |
196 | 214 | $text = $this->normalizeText( $value ); |
197 | 215 | $text = '<p><strong>'.$title.'</strong></p><p>'.$text.'</p>'; |
@@ -208,7 +226,9 @@ discard block |
||
208 | 226 | */ |
209 | 227 | protected function buildOptionTitle( $key, $value ) |
210 | 228 | { |
211 | - if( $this->isHidden( $key ))return; |
|
229 | + if( $this->isHidden( $key )) { |
|
230 | + return; |
|
231 | + } |
|
212 | 232 | if( empty( $value )) { |
213 | 233 | $value = __( 'No Title', 'site-reviews' ); |
214 | 234 | } |
@@ -238,7 +258,9 @@ discard block |
||
238 | 258 | */ |
239 | 259 | protected function generateSchema() |
240 | 260 | { |
241 | - if( !wp_validate_boolean( $this->args['schema'] ))return; |
|
261 | + if( !wp_validate_boolean( $this->args['schema'] )) { |
|
262 | + return; |
|
263 | + } |
|
242 | 264 | glsr( Schema::class )->store( |
243 | 265 | glsr( Schema::class )->build( $this->args ) |
244 | 266 | ); |
@@ -289,9 +311,13 @@ discard block |
||
289 | 311 | $words->setText( $text ); |
290 | 312 | $count = 0; |
291 | 313 | foreach( $words as $offset ){ |
292 | - if( $words->getRuleStatus() === IntlRuleBasedBreakIterator::WORD_NONE )continue; |
|
314 | + if( $words->getRuleStatus() === IntlRuleBasedBreakIterator::WORD_NONE ) { |
|
315 | + continue; |
|
316 | + } |
|
293 | 317 | $count++; |
294 | - if( $count != $limit )continue; |
|
318 | + if( $count != $limit ) { |
|
319 | + continue; |
|
320 | + } |
|
295 | 321 | return $offset; |
296 | 322 | } |
297 | 323 | return strlen( $text ); |
@@ -105,7 +105,9 @@ discard block |
||
105 | 105 | */ |
106 | 106 | public function revert( $postId ) |
107 | 107 | { |
108 | - if( get_post_field( 'post_type', $postId ) != Application::POST_TYPE )return; |
|
108 | + if( get_post_field( 'post_type', $postId ) != Application::POST_TYPE ) { |
|
109 | + return; |
|
110 | + } |
|
109 | 111 | delete_post_meta( $postId, '_edit_last' ); |
110 | 112 | $result = wp_update_post([ |
111 | 113 | 'ID' => $postId, |
@@ -123,7 +125,9 @@ discard block |
||
123 | 125 | */ |
124 | 126 | public function single( WP_Post $post ) |
125 | 127 | { |
126 | - if( $post->post_type != Application::POST_TYPE )return; |
|
128 | + if( $post->post_type != Application::POST_TYPE ) { |
|
129 | + return; |
|
130 | + } |
|
127 | 131 | $review = new Review( $post ); |
128 | 132 | return apply_filters( 'site-reviews/get/review', $review, $post ); |
129 | 133 | } |
@@ -150,7 +154,9 @@ discard block |
||
150 | 154 | $termIds = array_map( 'trim', explode( ',', $commaSeparatedTermIds )); |
151 | 155 | foreach( $termIds as $termId ) { |
152 | 156 | $term = term_exists( $termId, Application::TAXONOMY ); |
153 | - if( !isset( $term['term_id'] ))continue; |
|
157 | + if( !isset( $term['term_id'] )) { |
|
158 | + continue; |
|
159 | + } |
|
154 | 160 | $terms[] = intval( $term['term_id'] ); |
155 | 161 | } |
156 | 162 | return $terms; |
@@ -164,7 +170,9 @@ discard block |
||
164 | 170 | protected function setTerms( $postId, $termIds ) |
165 | 171 | { |
166 | 172 | $terms = $this->normalizeTerms( $termIds ); |
167 | - if( empty( $terms ))return; |
|
173 | + if( empty( $terms )) { |
|
174 | + return; |
|
175 | + } |
|
168 | 176 | $result = wp_set_object_terms( $postId, $terms, Application::TAXONOMY ); |
169 | 177 | if( is_wp_error( $result )) { |
170 | 178 | glsr_log()->error( $result->get_error_message() ); |
@@ -34,7 +34,9 @@ discard block |
||
34 | 34 | foreach( glsr( ReviewManager::class )->get( $this->args )->results as $review ) { |
35 | 35 | // Only include critic reviews that have been directly produced by your site, not reviews from third- party sites or syndicated reviews. |
36 | 36 | // @see https://developers.google.com/search/docs/data-types/review |
37 | - if( $review->review_type != 'local' )continue; |
|
37 | + if( $review->review_type != 'local' ) { |
|
38 | + continue; |
|
39 | + } |
|
38 | 40 | $reviews[] = $this->buildReview( $review ); |
39 | 41 | } |
40 | 42 | if( !empty( $reviews )) { |
@@ -79,7 +81,9 @@ discard block |
||
79 | 81 | */ |
80 | 82 | public function render() |
81 | 83 | { |
82 | - if( is_null( glsr()->schemas ))return; |
|
84 | + if( is_null( glsr()->schemas )) { |
|
85 | + return; |
|
86 | + } |
|
83 | 87 | printf( '<script type="application/ld+json">%s</script>', json_encode( |
84 | 88 | apply_filters( 'site-reviews/schema/all', glsr()->schemas ), |
85 | 89 | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES |
@@ -131,7 +135,9 @@ discard block |
||
131 | 135 | { |
132 | 136 | foreach( $values as $value ) { |
133 | 137 | $option = $this->getSchemaOptionValue( $value ); |
134 | - if( empty( $option ))continue; |
|
138 | + if( empty( $option )) { |
|
139 | + continue; |
|
140 | + } |
|
135 | 141 | $schema->$value( $option ); |
136 | 142 | } |
137 | 143 | return $schema; |
@@ -237,7 +243,9 @@ discard block |
||
237 | 243 | if( $value != $fallback ) { |
238 | 244 | return $value; |
239 | 245 | } |
240 | - if( !is_single() && !is_page() )return; |
|
246 | + if( !is_single() && !is_page() ) { |
|
247 | + return; |
|
248 | + } |
|
241 | 249 | $method = glsr( Helper::class )->buildMethodName( $option, 'getThing' ); |
242 | 250 | if( method_exists( $this, $method )) { |
243 | 251 | return $this->$method(); |
@@ -17,7 +17,9 @@ |
||
17 | 17 | natsort( $routines ); |
18 | 18 | array_walk( $routines, function( $routine ) { |
19 | 19 | $parts = explode( '__', $routine ); |
20 | - if( version_compare( glsr()->version, end( $parts ), '>=' ))return; |
|
20 | + if( version_compare( glsr()->version, end( $parts ), '>=' )) { |
|
21 | + return; |
|
22 | + } |
|
21 | 23 | call_user_func( [$this, $routine] ); |
22 | 24 | }); |
23 | 25 | $this->updateVersion(); |
@@ -65,7 +65,9 @@ |
||
65 | 65 | $properties = glsr( CreateReviewDefaults::class )->restrict( array_merge( $defaults, $meta )); |
66 | 66 | $this->modified = $this->isModified( $properties ); |
67 | 67 | array_walk( $properties, function( $value, $key ) { |
68 | - if( !property_exists( $this, $key ) || isset( $this->$key ))return; |
|
68 | + if( !property_exists( $this, $key ) || isset( $this->$key )) { |
|
69 | + return; |
|
70 | + } |
|
69 | 71 | $this->$key = $value; |
70 | 72 | }); |
71 | 73 | } |
@@ -94,7 +94,9 @@ discard block |
||
94 | 94 | if( !in_array( $metaKey, ['rating', 'review_type'] ) |
95 | 95 | || get_post_field( 'post_type', $postId ) != Application::POST_TYPE |
96 | 96 | || get_post_field( 'post_status', $postId ) != 'publish' // only fire on an existing published post |
97 | - )return; |
|
97 | + ) { |
|
98 | + return; |
|
99 | + } |
|
98 | 100 | glsr( Metaboxes::class )->onBeforeUpdateReview( get_post( $postId ), $metaKey, $metaValue ); |
99 | 101 | } |
100 | 102 | |
@@ -129,7 +131,9 @@ discard block |
||
129 | 131 | { |
130 | 132 | if( in_array( $oldStatus, ['new', $newStatus] ) |
131 | 133 | || $post->post_type != Application::POST_TYPE |
132 | - )return; |
|
134 | + ) { |
|
135 | + return; |
|
136 | + } |
|
133 | 137 | glsr( Metaboxes::class )->onReviewStatusChange( $newStatus, $post ); |
134 | 138 | } |
135 | 139 | |
@@ -150,7 +154,9 @@ discard block |
||
150 | 154 | */ |
151 | 155 | public function registerMetaBoxes( $postType ) |
152 | 156 | { |
153 | - if( $postType != Application::POST_TYPE )return; |
|
157 | + if( $postType != Application::POST_TYPE ) { |
|
158 | + return; |
|
159 | + } |
|
154 | 160 | add_meta_box( Application::ID.'_assigned_to', __( 'Assigned To', 'site-reviews' ), [$this, 'renderAssignedToMetabox'], null, 'side' ); |
155 | 161 | add_meta_box( Application::ID.'_review', __( 'Details', 'site-reviews' ), [$this, 'renderDetailsMetaBox'], null, 'side' ); |
156 | 162 | add_meta_box( Application::ID.'_response', __( 'Respond Publicly', 'site-reviews' ), [$this, 'renderResponseMetaBox'], null, 'normal' ); |
@@ -180,7 +186,9 @@ discard block |
||
180 | 186 | */ |
181 | 187 | public function renderAssignedToMetabox( WP_Post $post ) |
182 | 188 | { |
183 | - if( !$this->isReviewPostType( $post ))return; |
|
189 | + if( !$this->isReviewPostType( $post )) { |
|
190 | + return; |
|
191 | + } |
|
184 | 192 | $assignedTo = (string)get_post_meta( $post->ID, 'assigned_to', true ); |
185 | 193 | wp_nonce_field( 'assigned_to', '_nonce-assigned-to', false ); |
186 | 194 | glsr()->render( 'partials/editor/metabox-assigned-to', [ |
@@ -195,7 +203,9 @@ discard block |
||
195 | 203 | */ |
196 | 204 | public function renderDetailsMetaBox( WP_Post $post ) |
197 | 205 | { |
198 | - if( !$this->isReviewPostType( $post ))return; |
|
206 | + if( !$this->isReviewPostType( $post )) { |
|
207 | + return; |
|
208 | + } |
|
199 | 209 | $review = glsr( ReviewManager::class )->single( $post ); |
200 | 210 | glsr()->render( 'partials/editor/metabox-details', [ |
201 | 211 | 'button' => $this->buildDetailsMetaBoxRevertButton( $review, $post ), |
@@ -209,7 +219,9 @@ discard block |
||
209 | 219 | */ |
210 | 220 | public function renderPinnedInPublishMetaBox() |
211 | 221 | { |
212 | - if( !$this->isReviewPostType( get_post() ))return; |
|
222 | + if( !$this->isReviewPostType( get_post() )) { |
|
223 | + return; |
|
224 | + } |
|
213 | 225 | glsr( Html::class )->renderTemplate( 'partials/editor/pinned', [ |
214 | 226 | 'context' => [ |
215 | 227 | 'no' => __( 'No', 'site-reviews' ), |
@@ -225,7 +237,9 @@ discard block |
||
225 | 237 | */ |
226 | 238 | public function renderResponseMetaBox( WP_Post $post ) |
227 | 239 | { |
228 | - if( !$this->isReviewPostType( $post ))return; |
|
240 | + if( !$this->isReviewPostType( $post )) { |
|
241 | + return; |
|
242 | + } |
|
229 | 243 | wp_nonce_field( 'response', '_nonce-response', false ); |
230 | 244 | glsr()->render( 'partials/editor/metabox-response', [ |
231 | 245 | 'response' => get_post_meta( $post->ID, 'response', true ), |
@@ -239,7 +253,9 @@ discard block |
||
239 | 253 | */ |
240 | 254 | public function renderTaxonomyMetabox( WP_Post $post ) |
241 | 255 | { |
242 | - if( !$this->isReviewPostType( $post ))return; |
|
256 | + if( !$this->isReviewPostType( $post )) { |
|
257 | + return; |
|
258 | + } |
|
243 | 259 | glsr()->render( 'partials/editor/metabox-categories', [ |
244 | 260 | 'post' => $post, |
245 | 261 | 'tax_name' => Application::TAXONOMY, |
@@ -277,7 +293,9 @@ discard block |
||
277 | 293 | protected function buildAssignedToTemplate( $assignedTo, WP_Post $post ) |
278 | 294 | { |
279 | 295 | $assignedPost = glsr( Database::class )->getAssignedToPost( $post->ID, $assignedTo ); |
280 | - if( !( $assignedPost instanceof WP_Post ))return; |
|
296 | + if( !( $assignedPost instanceof WP_Post )) { |
|
297 | + return; |
|
298 | + } |
|
281 | 299 | return glsr( Html::class )->buildTemplate( 'partials/editor/assigned-post', [ |
282 | 300 | 'context' => [ |
283 | 301 | 'data.url' => (string)get_permalink( $assignedPost ), |
@@ -318,7 +336,9 @@ discard block |
||
318 | 336 | */ |
319 | 337 | protected function getReviewType( $review ) |
320 | 338 | { |
321 | - if( count( glsr()->reviewTypes ) < 2 )return; |
|
339 | + if( count( glsr()->reviewTypes ) < 2 ) { |
|
340 | + return; |
|
341 | + } |
|
322 | 342 | $reviewType = array_key_exists( $review->review_type, glsr()->reviewTypes ) |
323 | 343 | ? glsr()->reviewTypes[$review->review_type] |
324 | 344 | : __( 'Unknown', 'site-reviews' ); |
@@ -54,7 +54,9 @@ discard block |
||
54 | 54 | { |
55 | 55 | $postTypeColumns = glsr()->postTypeColumns[Application::POST_TYPE]; |
56 | 56 | foreach( $postTypeColumns as $key => &$value ) { |
57 | - if( !array_key_exists( $key, $columns ) || !empty( $value ))continue; |
|
57 | + if( !array_key_exists( $key, $columns ) || !empty( $value )) { |
|
58 | + continue; |
|
59 | + } |
|
58 | 60 | $value = $columns[$key]; |
59 | 61 | } |
60 | 62 | if( count( glsr( Database::class )->getReviewsMeta( 'review_type' )) < 2 ) { |
@@ -92,7 +94,8 @@ discard block |
||
92 | 94 | * @return array |
93 | 95 | * @filter display_post_states |
94 | 96 | */ |
95 | - public function filterPostStates( array $postStates, WP_Post $post ) { |
|
97 | + public function filterPostStates( array $postStates, WP_Post $post ) |
|
98 | + { |
|
96 | 99 | if( $post->post_type == Application::POST_TYPE |
97 | 100 | && array_key_exists( 'pending', $postStates )) { |
98 | 101 | $postStates['pending'] = __( 'Unapproved', 'site-reviews' ); |
@@ -137,7 +140,9 @@ discard block |
||
137 | 140 | $postTypeColumns = glsr()->postTypeColumns[Application::POST_TYPE]; |
138 | 141 | unset( $postTypeColumns['cb'] ); |
139 | 142 | foreach( $postTypeColumns as $key => $value ) { |
140 | - if( glsr( Helper::class )->startsWith( 'taxonomy', $key ))continue; |
|
143 | + if( glsr( Helper::class )->startsWith( 'taxonomy', $key )) { |
|
144 | + continue; |
|
145 | + } |
|
141 | 146 | $columns[$key] = $key; |
142 | 147 | } |
143 | 148 | return $columns; |
@@ -161,7 +166,9 @@ discard block |
||
161 | 166 | 'Pending' => __( 'Unapproved', 'site-reviews' ), |
162 | 167 | ]; |
163 | 168 | foreach( $strings as $search => $replace ) { |
164 | - if( strpos( $single, $search ) === false )continue; |
|
169 | + if( strpos( $single, $search ) === false ) { |
|
170 | + continue; |
|
171 | + } |
|
165 | 172 | $translation = $this->getTranslation([ |
166 | 173 | 'number' => $number, |
167 | 174 | 'plural' => str_replace( $search, $replace, $plural ), |
@@ -213,7 +220,9 @@ discard block |
||
213 | 220 | */ |
214 | 221 | public function saveBulkEditFields( $postId ) |
215 | 222 | { |
216 | - if( !current_user_can( 'edit_posts' ))return; |
|
223 | + if( !current_user_can( 'edit_posts' )) { |
|
224 | + return; |
|
225 | + } |
|
217 | 226 | $assignedTo = filter_input( INPUT_GET, 'assigned_to' ); |
218 | 227 | if( $assignedTo && get_post( $assignedTo )) { |
219 | 228 | update_post_meta( $postId, 'assigned_to', $assignedTo ); |
@@ -226,7 +235,9 @@ discard block |
||
226 | 235 | */ |
227 | 236 | public function setQueryForColumn( WP_Query $query ) |
228 | 237 | { |
229 | - if( !$this->hasPermission( $query ))return; |
|
238 | + if( !$this->hasPermission( $query )) { |
|
239 | + return; |
|
240 | + } |
|
230 | 241 | $this->setMetaQuery( $query, [ |
231 | 242 | 'rating', 'review_type', |
232 | 243 | ]); |
@@ -298,7 +309,9 @@ discard block |
||
298 | 309 | protected function setMetaQuery( WP_Query $query, array $metaKeys ) |
299 | 310 | { |
300 | 311 | foreach( $metaKeys as $key ) { |
301 | - if( !( $value = filter_input( INPUT_GET, $key )))continue; |
|
312 | + if( !( $value = filter_input( INPUT_GET, $key ))) { |
|
313 | + continue; |
|
314 | + } |
|
302 | 315 | $metaQuery = (array)$query->get( 'meta_query' ); |
303 | 316 | $metaQuery[] = [ |
304 | 317 | 'key' => $key, |