WC_Admin_List_Table_Products::render_thumb_column()protectedWC 1.0

Render column: thumb.

Method of the class: WC_Admin_List_Table_Products{}

No Hooks.

Return

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->render_thumb_column();

WC_Admin_List_Table_Products::render_thumb_column() code WC 8.6.1

protected function render_thumb_column() {
	echo '<a href="' . esc_url( get_edit_post_link( $this->object->get_id() ) ) . '">' . $this->object->get_image( 'thumbnail' ) . '</a>'; // WPCS: XSS ok.
}