似乎jQuery最适合这种情况。主要由我自己负责,以备将来再次需要:
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#this_comes_before").insertBefore("#wc_checkout_add_ons");
});
</script>
</head>
<body>
<div id="wc_checkout_add_ons">stuff</div>
<div id="this_comes_before">something</div>
</body>
Edit for future me: 用这个代替你这个懒惰的混蛋。。。
add_action( \'woocommerce_checkout_after_customer_details\', \'test99\' );
function test99() {
echo "your shit";
}