03/16/2019 at 9:53 am
#487156
Participant
Hi again Steven,
I want the excerpt to be visible on the listing at all times underneath ‘Categories’ and above ‘Show Bio’ so I placed it in the card.php file as shown in the part of the code below but nothing is showing? Do I have it in the right place?
$entry->excerpt();
<?php
if ( $atts['show_bio'] && 0 < strlen( $bio ) ) {
$entry->getBioBlock(
array(
'before' => '<h4>' . esc_html__( 'Biographical Info', 'connections' ) . '</h4>' . PHP_EOL,
'after' => '<div class="cn-clear"></div>',
)
);
}
if ( $atts['show_notes'] && 0 < strlen( $notes ) ) {
$entry->getNotesBlock(
array(
'before' => '<h4>' . esc_html__( 'Notes', 'connections' ) . '</h4>' . PHP_EOL,
'after' => '<div class="cn-clear"></div>',
)
);
}
?>
Regards
John
