Ansico-SoMe-plugin/ansico-some-plugin/templates/single-micropost.php

7 lines
408 B
PHP
Raw Normal View History

2026-04-16 16:59:23 +00:00
<?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(); ?>