2017-04-14 27 views
1

私はwordpress 4.7.3バージョンを使用しています。私は新しいテーマをインストールしました。私は、テキストエリアの隣のコンソールでエラーを見つける。Wordpress:メニューウィジェットインスタンスのためのそのようなメソッド 'インスタンス'

Uncaught Error: no such method 'instance' for menu widget instance

コードは次のとおりです。

jQuery(function() { 
    jQuery("#address").autocomplete({ 
     //This bit uses the geocoder to fetch address values 
     source: function(request, response) { 
      geocoder.geocode({'address': request.term }, function(results, status) { 
       response(jQuery.map(results, function(item) { 
        return { 
         label: item.formatted_address, 
         value: item.formatted_address, 
         latitude: item.geometry.location.lat(), 
         longitude: item.geometry.location.lng() 
        } 
       })); 
      }) 
     }, 
     //This bit is executed upon selection of an address 
     select: function(event, ui) { 
      jQuery("#latitude").val(ui.item.latitude); 
      jQuery("#longitude").val(ui.item.longitude); 

      var location = new google.maps.LatLng(ui.item.latitude, ui.item.longitude); 

      marker.setPosition(location); 
      map.setZoom(16); 
      map.setCenter(location); 

     } 
    }); 
}); 

問題がありますか?

答えて

1

私は正確な問題がありました。問題は、プラグインが古いバージョンのjQueryモバイルプラグインをロードしていたことです。

関連する問題