mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-07-03 01:31:17 +03:00
19 lines
345 B
PHP
19 lines
345 B
PHP
<?php
|
|
namespace WordPressDotOrg\FiveForTheFuture\Theme;
|
|
|
|
$post_type = get_post_type(); // 5ftf_pledge
|
|
|
|
get_header(); ?>
|
|
|
|
<main id="main" class="site-main" role="main">
|
|
|
|
<?php while ( have_posts() ) :
|
|
the_post();
|
|
|
|
get_template_part( 'template-parts/' . $post_type, 'single' );
|
|
endwhile; ?>
|
|
|
|
</main><!-- #main -->
|
|
|
|
<?php get_footer();
|