私は次のことをしました:
  jQuery('.businessdirectory-category .wpbdp-rating-info').insertAfter('.businessdirectory-category .title');
.wpbdp-rating-info後に移動し.titleます。しかし.wpbdp-rating-info、ページには3つあるので、それぞれ.businessdirectory-categoryに3つあります。.wpbdp-rating-info
.businessdirectory-categoryそれぞれが独自の.wpbdp-rating-info.title`のみを持つようにするにはどうすればよいappended to its ownですか?
編集:

私はそれをこれに変更しました:
 jQuery('.wpbdp-listing-excerpt .wpbdp-rating-info').each(function () {
    var $this = jQuery(this);
    $this.insertAfter($this.closest('.wpbdp-listing-excerpt').find('.title'));
  });
しかし、どちらも機能しませんでした。