Example #1
0
		<div class="FA_article <?php 
    the_fa_class();
    ?>
">	
			<div class="FA_wrap">
				<?php 
    /**
     * Template function to display post image.
     */
    the_fa_image();
    ?>
				<?php 
    /**
     * Template function to display post title
     */
    the_fa_title('<h2>', '</h2>');
    ?>
				
				<?php 
    /**
     * Template function to display the date.
     */
    the_fa_date('<span class="FA_date">', '</span>');
    ?>
				
				<?php 
    /**
     * Template function to display content. Has the ability to run or not shortcodes
     */
    the_fa_content('<p>', '</p>');
    ?>
Example #2
0
>
	<div class="nivoSlider fa-nivo-slider">
    	<?php 
while (have_slides()) {
    ?>
    		<?php 
    $url = get_the_slide_url();
    $image = get_the_fa_slide_image_url();
    $caption_id = 'fa-caption-' . rand(1, 1000);
    if (!$image) {
        echo "<!-- Slide skipped because it doesn't have an image set on it or images are blocked by slider settings. -->\n";
        continue;
    }
    $template = ($url ? '<a href="%1$s"><img src="%2$s" alt="%3$s" title="%4$s" /></a>' : '%1$s<img src="%2$s" alt="%3$s" title="%4$s" />') . "\n";
    $content = the_fa_title('<h2>', '</h2>', false) . the_fa_date('<span class="fa-date"> ', '</span>', false) . the_fa_author('<span class="fa-author">' . __(' by '), '</span> ', false) . the_fa_content('', '', false) . the_fa_read_more('fa-read-more', false);
    if (!empty($content)) {
        $captions[] = sprintf('<div id="%s" class="nivo-html-caption">%s</div>', $caption_id, $content);
    } else {
        $caption_id = false;
    }
    printf($template, $url, $image['url'], esc_attr(the_fa_title('', '', false, true)), $caption_id ? '#' . $caption_id : '');
    ?>
    	<?php 
}
?>
    </div>
    <?php 
// show the captions
echo implode("\n", $captions);
?>
</div>