Hi there, the post type is called web-story, not story.
I must say I’m struggling with it is there a way to display them in wp query?
I guessed a simple the_content() but not…
Hi, I need some help, how can I get the “Publisher logo”
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
???? publisher_logo;
endwhile;
wp_reset_postdata();
I try with different sintaxis but I have not been able to solve it.
@marcohdzdva For next time, please open a new topic with your question as this one here is resolved (and different)
The currently active publisher logo is stored in wp_options, you could get the attachment ID via get_option( 'web_stories_active_publisher_logo' ). There is currently not an easy way to get the individual story’s publisher logo (which might differ from the currently active one).