catalog-post.php 291 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Template Name: Страница с карточкой товара
  4. * Template Post type: catalog
  5. */
  6. get_header();
  7. ?>
  8. </div>
  9. </header>
  10. <main>
  11. <?php
  12. the_post_thumbnail();
  13. the_title();
  14. the_field('site-price')
  15. ?>
  16. </main>
  17. <?php
  18. get_footer()
  19. ?>