Exemple #1
0
        the_author_meta('email', $curauth->ID);
        ?>
"><i class="dashicons dashicons-email-alt"></i></a></li>
	                            <?php 
    }
    ?>
	                            <?php 
}
?>
	                        </ul>
					</footer>
					</div>
				</div>
				
		        <div class="site-content page-wrap">
			   <?php 
$a_counter = mom_option('author_post_counter');
$user_post_count = count_user_posts($curauth->ID);
if ($user_post_count != 0) {
    mom_posts_timeline($a_counter, $curauth->ID);
}
?>
		        </div>
		
		    </div>
            

    </div><!--wrap-->
    
    <?php 
get_footer();
Exemple #2
0
<?php

/*
Template Name: Timeline Page
*/
?>

<?php 
get_header();
global $post;
$tlcat = get_post_meta($post->ID, 'mom_timeline_cat', true);
$tlorder = get_post_meta($post->ID, 'mom_timeline_orderby', true);
$tlcounter = get_post_meta($post->ID, 'mom_timeline_posts', true);
$tlex = get_post_meta($post->ID, 'mom_timeline_ex', true);
if ($tlcounter == '') {
    $tlcounter = 10;
}
?>
<div class="main-container author-page timeline"><!--container-->
	<div class="full-main-content" role="main">
		<div class="site-content page-wrap">
			<?php 
mom_posts_timeline($tlcounter, '', $tlex, $tlcat, $tlorder);
?>
		</div>
	</div>
</div>
</div><!-- wrap -->
<?php 
get_footer();