Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.
Closed 5 years ago.
Improve this questionI created my custom post type page (archive-objects.php). This page works fine, I have been created page for it and attributed template to it. So everything is okay. But something wrong is with YOAST SEO. This page title, img and other iformation taking from not this page info, but from first looped post in this archive. In my custom post type I done public -> true and has_archive -> true. What problem can this be? Thank you.
Closed. This question is off-topic. It is not currently accepting answers.Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.
Closed 5 years ago.
Improve this questionI created my custom post type page (archive-objects.php). This page works fine, I have been created page for it and attributed template to it. So everything is okay. But something wrong is with YOAST SEO. This page title, img and other iformation taking from not this page info, but from first looped post in this archive. In my custom post type I done public -> true and has_archive -> true. What problem can this be? Thank you.
I just find out what I was missing at the top, after get_header();.
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
and at the bottom, just before get_footer();
<?php endwhile; ?> <?php endif; ?>
So I just figured out that I was not loading archive properly, so I don't get all his information.