/home/woodwerk/site/wp-content/themes/woodwerk/single.php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package woodwerk
*/
get_header();
while ( have_posts() ) :
the_post();
?>
<article class="content post">
<figure class="interstitial">
<?php
$main_thumb_url = fly_get_attachment_image_src(get_post_thumbnail_id(), array(1860,860),true);
?>
<img class="interstitial-image" alt="<?= the_title(); ?>" src="<?php echo $main_thumb_url['src']; ?>">
</figure>
<header class="post-header">
<?php
if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb( '<div class="post-breadcrumbs breadcrumbs">','</div>' );
}
?>
<h1 class="post-title"><?php the_title(); ?></h1>
<!--seoshield_formulas--blog-->
</header>
<div class="post-content">
<?php
if( have_rows('post_parts') ):
while ( have_rows('post_parts') ) : the_row();
get_template_part( 'template-parts/acf', get_row_layout() );
endwhile;
endif;
?>
</div>
/home/woodwerk/site/wp-content/themes/woodwerk/single.php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package woodwerk
*/
get_header();
while ( have_posts() ) :
the_post();
?>
<article class="content post">
<figure class="interstitial">
<?php
$main_thumb_url = fly_get_attachment_image_src(get_post_thumbnail_id(), array(1860,860),true);
?>
<img class="interstitial-image" alt="<?= the_title(); ?>" src="<?php echo $main_thumb_url['src']; ?>">
</figure>
<header class="post-header">
<?php
if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb( '<div class="post-breadcrumbs breadcrumbs">','</div>' );
}
?>
<h1 class="post-title"><?php the_title(); ?></h1>
<!--seoshield_formulas--blog-->
</header>
<div class="post-content">
<?php
if( have_rows('post_parts') ):
while ( have_rows('post_parts') ) : the_row();
get_template_part( 'template-parts/acf', get_row_layout() );
endwhile;
endif;
?>
</div>
/home/woodwerk/site/wp-includes/template-loader.php
}
break;
}
}
if ( ! $template ) {
$template = get_index_template();
}
/**
* Filters the path of the current template before including it.
*
* @since 3.0.0
*
* @param string $template The path of the template to include.
*/
$template = apply_filters( 'template_include', $template );
if ( $template ) {
include $template;
} elseif ( current_user_can( 'switch_themes' ) ) {
$theme = wp_get_theme();
if ( $theme->errors() ) {
wp_die( $theme->errors() );
}
}
return;
}
/home/woodwerk/site/wp-blog-header.php
<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/
if ( ! isset( $wp_did_header ) ) {
$wp_did_header = true;
// Load the WordPress library.
require_once __DIR__ . '/wp-load.php';
// Set up the WordPress query.
wp();
// Load the theme template.
require_once ABSPATH . WPINC . '/template-loader.php';
}
/home/woodwerk/site/index.php
<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';