-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
40 lines (30 loc) · 1011 Bytes
/
home.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
/**
* The template for displaying the Writings (Blog) main page.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Radical Creative Sanctuary 2.0
*/
get_header(); ?>
<div class="wrap">
<div class="primary content-area">
<main id="main" class="site-main" role="main">
<div class="js-menu-trigger sliding-panel-button">
<span></span><span></span><span></span><span></span>
</div>
<?php
// while ( have_posts() ) : the_post();
$id = get_option('page_for_posts');
$podcast_intro = get_field( 'post_wysiwyg', $id);
echo wp_kses_post( the_field( 'post_wysiwyg', get_option('page_for_posts') ) );
// get_template_part( 'template-parts/content', 'blog' );
// endwhile; // End of the loop.
?>
</main><!-- #main -->
</div><!-- .primary -->
<div class="sidebar-wrapper sliding-panel-content">
<?php //dynamic_sidebar( 'sidebar-3' ); ?>
</div> <!--/.sidebar-wrapper-->
</div><!-- .wrap -->
<?php get_footer(); ?>