06/28/2016 at 10:11 am
#380780
Participant
I just went and added the word Test onto the page just below the excerpt code to make sure again it’s the right card.php file and it’s coming up on the page. So I’m at a loss?
<?php $entry->getContentBlock( $atts['content'], $atts, $template ); ?>
<div class="cn-clear" style="display:table;margin: 10px 0;width:100%;">
<div style="display:table-cell;vertical-align:middle;">
<?php
if ( $atts['show_categories'] ) {
$entry->getCategoryBlock(
array(
'separator' => ', ',
'label' => __( $atts['str_category_label'], 'cnt_cmap' ),
)
);
}
$entry->getExcerpt();
?>
Test
</div>
<div style="display:table-cell;text-align:right;vertical-align:middle;">
<?php
if ( $atts['show_last_updated'] ) {
cnTemplatePart::updated(
array(
'timestamp' => $entry->getUnixTimeStamp(),
'style' => array(
'font-variant' => 'small-caps',
)
)
);
}
?>
</div>
</div>
