私は次のことをしました:
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'));
});
しかし、どちらも機能しませんでした。