8 lines
No EOL
539 B
PHP
8 lines
No EOL
539 B
PHP
<?php get_header(); ?>
|
|
<div class="content-area" style="max-width: 800px; margin: 40px auto; padding: 0 20px;">
|
|
<h1 style="margin-bottom: 20px; font-family: sans-serif;">Microposts</h1>
|
|
<?php if ( have_posts() ) : while ( have_posts() ) : the_post();
|
|
echo ansico_get_tweet_html( get_the_author_meta('ID'), get_the_content(), get_post_meta(get_the_ID(), 'ansico_micropost_time', true), get_post_meta(get_the_ID(), 'ansico_micropost_url', true) );
|
|
endwhile; the_posts_navigation(); endif; ?>
|
|
</div>
|
|
<?php get_footer(); ?>
|