Change product author
-
I am trying to change all of the authors for my woocommerce products to our company name for social linking purposes. Currently all of our social links to products display something like this when embedded in a platform https://prntscr.com/mu8auz for example on a program like Discord.
Ive tried various open graph methods to completely override the article:author with no success on posts and pages for the site. The only option which has worked was changing the actual author to an existing renamed admin account for pages and posts…but I dont see an option to modify the author of a product, which is extremely frustrating.
Ive also tried changing the post type via an action:
add_action(‘init’, ‘function_to_add_author_woocommerce’, 999 );
function function_to_add_author_woocommerce() {
add_post_type_support( ‘product’, ‘author’ );
}This only allowed me to change the backend listing but had no effect on the internal listing (links still displayed original author). Couldnt find any information in the dev docs for woocommerce pertaining to product Authors.
Is there anything id be able to plug into my child theme functions.php to change these product authors?
- The topic ‘Change product author’ is closed to new replies.