Esempio n. 1
0
/**
 * Default Post Content Template - tpl_item()
 * 
 * @var array $params {
 *      
 *      Parameters passed into the template from tpl_item()
 *
 * 		@var ACFPost $post 			Post object wrapped in ACF object
 * }	
 * 
 */
extract($params);
// Buffer output so we can cache the readmore link template
ob_start();
// Include the link template
tpl_link_read_more(get_permalink($post->ID));
// Assign it to the $permalink variable
$permalink = ob_get_clean();
?>


<article class="item default" itemscope itemtype="http://schema.org/Article">
	
	<header>

		<h2 itemprop="headline" class="title"><?php 
echo $post->post_title;
?>
</h2>

		<span itemprop="author" itemscope itemtype="http://schema.org/Person" class="author meta">
Esempio n. 2
0
/**
 * Page Content Template - tpl_item_page()
 * 
 * @var array $params {
 *      
 *      Parameters passed into the template from tpl_item()
 *
 * 		@var ACFPost $page 			Post object wrapped in ACF object
 * }	
 * 
 */
extract($params);
// Buffer output so we can cache the readmore link template
ob_start();
// Include the link template
tpl_link_read_more(get_permalink($page->ID));
// Assign it to the $permalink variable
$permalink = ob_get_clean();
?>


<article class="item page">
	
	<header>

		<h2 class="title"><?php 
echo $page->post_title;
?>
</h2>
		
	</header>