blob: 11f8b0eadf82b1ab1b957ddf7c4ff99524970c7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
/**
* Single post partial template.
*
* @package understrap
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
?>
<div <?php post_class(array('offer-page')); ?> id="post-<?php the_ID(); ?>">
<?php do_shortcode( the_content() ); ?>
</div>
|