嗨,我正在我的新wordpress网站上工作。我想在我的woocommerce订单状态中添加自定义订单状态,我发现以下代码:-
function custom_bulk_admin_footer() {
global $post_type;
if ( $post_type == \'shop_order\' ) {
?>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery(\'<option>\').val(\'mark_invoiced\').text(\'<?php _e( \'Mark invoiced\', \'textdomain\' ); ?>\').appendTo("select[name=\'action\']");
jQuery(\'<option>\').val(\'mark_invoiced\').text(\'<?php _e( \'Mark invoiced\', \'textdomain\' ); ?>\').appendTo("select[name=\'action2\']");
});
</script>
<?php
}
}
问题是,我应该把代码放在哪里?我应该把它放在我的主题函数中吗。php?或者把它放在admin\\u页脚?如果是这样的话,有人能帮我导航到admin\\u footer部分吗?