Archived topic
Feature Request: Author as Organization
3 replies · Started by Longinos on May 25, 2019
Viewing posts 1–4 of 4
Hi
In the file generatepress/inc/markup.php the CreativeWork SD is set allways to Person and some times this can be an Organization.
Hi there,
Try this:
add_filter( 'generate_post-author_microdata', function() {
return 'Organization';
} );
Adding PHP: https://docs.generatepress.com/article/adding-php/
Let me know :)
Hi Tom
Your filter don´t generate output to the author item in CreativeWork, but put me on the road. This worked:
add_filter( 'generate_post-author_microdata', function() {
return 'itemprop="author" itemtype="https://schema.org/Organization" itemscope';
} );
Ah, sorry about that! Glad you found the solution :)
This archived topic is closed to new replies.