Display only products from the logged in author on WooCommerce admin products list
问题 Is there a way, by which this Admin product dashboard shows only the products created by the logged-in user? I am trying manage_{$post->post_type}_posts_custom_column function but cannot move much E.g. I want something like this add_action( 'manage_product_posts_custom_column', 'custom_column_content', 10, 2 ); function custom_column_content( $column, $product_id ){ if( logged in user==Product Author){ Display product; } else{ Dont display product } } 回答1: The manage_product_posts_custom