Skip to content

Instantly share code, notes, and snippets.

@gvgvgvijayan
Created January 16, 2021 11:33
Show Gist options
  • Save gvgvgvijayan/be0bae954fbfb92d4d4a029c425b67cb to your computer and use it in GitHub Desktop.
Save gvgvgvijayan/be0bae954fbfb92d4d4a029c425b67cb to your computer and use it in GitHub Desktop.
<?php
...
/**
* Column cb.
*
* @param array $item Item data.
* @return string
*/
public function column_cb( $item ) {
return sprintf(
'<input type="checkbox" name="%1$s_id[]" value="%2$s" />',
esc_attr( $this->_args['singular'] ),
esc_attr( $item['id'] )
);
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment