File: //home/bristolfilton.co.uk/public_html/wp-content/themes/anima/content/content.php
<?php
/**
* The default template for displaying content
*
* @package Anima
*/
$options = cryout_get_option( array( 'anima_excerptarchive', 'anima_excerptsticky', 'anima_excerpthome' ) );
?><?php cryout_before_article_hook(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class( 'hentry' ); cryout_schema_microdata( 'blogpost' ); ?>>
<?php cryout_featured_hook(); ?>
<div class="article-inner">
<header class="entry-header">
<div class="entry-meta beforetitle-meta">
<?php cryout_post_title_hook(); ?>
</div><!-- .entry-meta -->
<?php the_title( sprintf( '<h2 class="entry-title"' . cryout_schema_microdata( 'entry-title', 0 ) . '><a href="%s" ' . cryout_schema_microdata( 'mainEntityOfPage', 0 ) . ' rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
<div class="entry-meta aftertitle-meta">
<?php cryout_post_meta_hook(); ?>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<?php cryout_before_inner_hook();
$mode = 'excerpt'; // default
if ( $options['anima_excerptarchive'] == "full" ) { $mode = 'content'; }
if ( is_sticky() && $options['anima_excerptsticky'] == "full" ) { $mode = 'content'; }
if ( $options['anima_excerpthome'] == "full" && ! is_archive() && ! is_search() ) { $mode = 'content'; }
if ( false != get_post_format() ) { $mode = 'content'; }
switch ( $mode ) {
case 'content': ?>
<div class="entry-content" <?php cryout_schema_microdata( 'entry-content' ); ?>>
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'anima' ), 'after' => '</div>' ) ); ?>
</div><!-- .entry-content -->
<div class="entry-meta entry-utility">
<?php cryout_meta_format_hook(); ?>
<?php cryout_post_utility_hook(); ?>
</div><!-- .entry-utility -->
<?php break;
case 'excerpt':
default: ?>
<div class="entry-summary" <?php cryout_schema_microdata( 'entry-summary' ); ?>>
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<div class="entry-meta entry-utility">
<?php cryout_meta_format_hook(); ?>
<?php cryout_post_utility_hook(); ?>
</div><!-- .entry-utility -->
<footer class="post-continue-container">
<?php cryout_post_excerpt_hook(); ?>
</footer>
<?php break;
}; ?>
<?php cryout_after_inner_hook(); ?>
</div><!-- .article-inner -->
</article><!-- #post-<?php the_ID(); ?> -->
<?php cryout_after_article_hook(); ?>