• File: ReviewsHooks.php
  • Full Path: /home/lef/public_html/wp-content/plugins/woocommerce-multilingual/classes/Rest/Store/ReviewsHooks.php
  • File size: 312 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace WCML\Rest\Store;

use WPML\FP\Fns;
use function WCML\functions\getSetting;

class ReviewsHooks implements \IWPML_Action {

	public function add_hooks() {
		if ( getSetting( 'reviews_in_all_languages', false ) ) {
			add_action( 'wpml_is_comment_query_filtered', Fns::always( false ) );
		}
	}
}