PHP 버젼과 테마 문제

현재 제가 관리하는 사이트(kcc-austin.org)의 PHP 버젼을 7.0에서 7.2 로 업그레이드 하려고 합니다만 아래 사용하는 테마(Fair)와 다음과 같은 에러가 나오네요.
Deprecated: Function create_function() is deprecated in /home/kccaus5/stg.kcc-austin.org/web/wp-content/themes/fair/framework/modules/widgets/sticky-sidebar/sticky-sidebar.php on line 20

라인을 찾아보면 그 내용은 다음과 같고요 (마지막 줄이 20번째 라인입니다):

어떤 해결 방법이 있을까요?
 

<?php
class FairEdgeStickySidebar extends FairEdgeWidget {
 protected $params;
 public function __construct() {
  parent::__construct(
   'edgtf_sticky_sidebar', // Base ID
   'Edge Sticky Sidebar', // Name
   array( 'description' => esc_html__( 'Use this widget to make the sidebar sticky. Drag it into the sidebar above the widget which you want to be the first element in the sticky sidebar.', 'fair' ), ) // Args
  );
  $this->setParams();
 }
 protected function setParams() {
  
 }
 public function widget( $args, $instance ) {
  echo '<div class="widget widget_sticky-sidebar"></div>';
 }

}
add_action( 'widgets_init', create_function( '', 'register_widget( "FairEdgeStickySidebar" );' ) );

 

좋은 정보와 인맥을 동시에, 워드프레스 사용자 단톡방 참여하기
워드프레스 에러 기술지원 서비스 전문가에게 맡기세요
워드프레스 에러 기술지원 서비스 전문가에게 맡기세요