WC_Admin_List_Table_Coupons::render_coupon_code_column()

Render columm: coupon_code.


Description Description


Source Source

File: includes/admin/list-tables/class-wc-admin-list-table-coupons.php

	protected function render_coupon_code_column() {
		global $post;

		$edit_link = get_edit_post_link( $this->object->get_id() );
		$title     = $this->object->get_code();

		echo '<strong><a class="row-title" href="' . esc_url( $edit_link ) . '">' . esc_html( $title ) . '</a>';
		_post_states( $post );
		echo '</strong>';
	}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.