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

8 lines
539 B
PHP
Raw Permalink 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;">
<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(); ?>