我已经看了以下https://wordpress.stackexchange.com/questions/120062/how-to-automatically-add-and-showopen-all-the-product-attributes一段时间了,由于无法将代码放置在主题函数中,因此我很难确定将代码放置在何处:
function wpa_120062_scripts(){ ?>
<script type="text/javascript">
jQuery(document).ready(function($) {
$('.product_attributes > div').removeClass('closed').show();
$('#product_attributes a.expand_all').click();
});
</script>
有人可以帮助我吗?