7 lines
408 B
PHP
7 lines
408 B
PHP
|
|
<?php get_header(); ?>
|
||
|
|
<div class="content-area" style="max-width: 800px; margin: 40px auto; padding: 0 20px;">
|
||
|
|
<?php 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; ?>
|
||
|
|
</div>
|
||
|
|
<?php get_footer(); ?>
|