Automattic\WooCommerce\Internal\Admin\ProductReviews
ReviewsCommentsOverrides::maybe_display_reviews_moved_notice
May render an admin notice informing the user that reviews were moved to a new page.
Method of the class: ReviewsCommentsOverrides{}
No Hooks.
Returns
null. Nothing (null).
Usage
// protected - for code of main (parent) or child class $result = $this->maybe_display_reviews_moved_notice() : void;
ReviewsCommentsOverrides::maybe_display_reviews_moved_notice() ReviewsCommentsOverrides::maybe display reviews moved notice code WC 10.4.3
protected function maybe_display_reviews_moved_notice() : void {
if ( $this->should_display_reviews_moved_notice() ) {
$this->display_reviews_moved_notice();
}
}