Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
382 B
1
Indexable
Never
add_action('b2bking_b2bcustomers_column_header', function(){
	?>
	<th><?php esc_html_e('Test','b2bking'); ?></th>
	<?php
});

add_filter('b2bking_b2bcustomers_row_content', function($content, $user){
	return $content.'<td>test1234</td>';
}, 10, 2);

add_action('b2bking_b2bcustomers_column_footer', function(){
	?>
	<th><?php esc_html_e('Test Footer','b2bking'); ?></th>
	<?php
});