Skip to content
Advertisement

Tag: attributes

Add_filter to add new column to Woocommerce product attributes table (Attributes add / edit page)

I would like to add a new column to the Attributes table on the Attributes add / edit page within Woocommerce / Wordpress admin, using the Wordpress / PHP add_filter command. As a reference, to add columns in WordPress admin to the Woocommerce All Products add / adit table, the following filter works: add_filter( ‘manage_edit-product_columns’, ‘add_product_column’, 10, 1 ) The

Advertisement