Aurangajeb

Add Author field column on WC product

Sep 14th, 2021
1,237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. /**
  2. Before ← https://prnt.sc/1mx40wn
  3. After β†’ https://prnt.sc/1mx7dtw
  4. **/
  5. //Add Author field column on WC product
  6. function add_author_support_to_post_type() {
  7.    add_post_type_support( 'product', 'author' );
  8. }
  9. add_action( 'init', 'add_author_support_to_post_type' );
Advertisement
Add Comment
Please, Sign In to add comment