1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php /** * Custom Facebook Feed Item : Date Template * Displays the item date * * @version X.X.X Custom Facebook Feed by Smash Balloon * */
use CustomFacebookFeed\CFF_Utils; use CustomFacebookFeed\CFF_Shortcode_Display;
// Don't load directly if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); }
$cff_date_styles = $this_class->get_style_attribute( 'date' ); ?>
<p class="cff-date" <?php echo $cff_date_styles ?>><?php echo CFF_Shortcode_Display::get_date( $options, $atts, $news ); if($cff_date_position == 'below' || (!$cff_show_author && $cff_date_position == 'author') ): ?> <span class="cff-date-dot"> · </span> <?php endif; ?> </p>
|