Cách để thêm cột thông tin tác giả đã đăng sản phẩm trên Web WordPress – WooCommerce

Code

				
					function add_author_support_to_products() {
   add_post_type_support( 'product', 'author' ); 
}
add_action( 'init', 'add_author_support_to_products' );