Fix selection of multiple orders in HPOS list table (#38749)
* Fix selection of multiple orders in HPOS list table * Add changelog
This commit is contained in:
parent
1e72bb0401
commit
6b86fc64de
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: fix
|
||||
|
||||
Fix selection of multiple orders in HPOS list table.
|
|
@ -867,7 +867,7 @@ class ListTable extends WP_List_Table {
|
|||
public function column_cb( $item ) {
|
||||
ob_start();
|
||||
?>
|
||||
<input id="cb-select-<?php echo esc_attr( $item->get_id() ); ?>" type="checkbox" name="<?php echo esc_attr( $this->_args['singular'] ); ?>" value="<?php echo esc_attr( $item->get_id() ); ?>" />
|
||||
<input id="cb-select-<?php echo esc_attr( $item->get_id() ); ?>" type="checkbox" name="<?php echo esc_attr( $this->_args['singular'] ); ?>[]" value="<?php echo esc_attr( $item->get_id() ); ?>" />
|
||||
|
||||
<div class="locked-indicator">
|
||||
<span class="locked-indicator-icon" aria-hidden="true"></span>
|
||||
|
|
Loading…
Reference in New Issue