$content_css = 'float:right;';
    $sidebar_css = 'float:left;';
} elseif ($smof_data['blog_sidebar_position'] == 'Right') {
    $content_css = 'float:left;';
    $sidebar_css = 'float:right;';
}
?>
	<div id="content" style="<?php 
echo $content_css;
?>
">
		<?php 
if (have_posts()) {
    ?>
		<?php 
    render_wpfc_sorting();
    ?>
		<?php 
    while (have_posts()) {
        the_post();
        ?>
		<div id="post-<?php 
        the_ID();
        ?>
" <?php 
        post_class('post');
        ?>
>
			<?php 
        if ($smof_data['featured_images']) {
            if ($smof_data['legacy_posts_slideshow']) {
Esempio n. 2
0
function wpfc_sermons_sorting_shortcode($atts)
{
    $sorting = render_wpfc_sorting();
    return $sorting;
}