mirror of
https://gh.wpcy.net/https://github.com/buddypress/buddypress.git
synced 2026-05-31 05:04:29 +08:00
git-svn-id: https://buddypress.svn.wordpress.org/tags/default-home-theme@993 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
33 lines
1.4 KiB
PHP
33 lines
1.4 KiB
PHP
<?php get_header(); ?>
|
|
|
|
<div id="content" class="widecolumn">
|
|
|
|
<div class="widget" id="latest-news">
|
|
<h2 class="widgettitle">News</h2>
|
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
|
|
|
<?php $attachment_link = get_the_attachment_link($post->ID, true, array(450, 800)); // This also populates the iconsize for the next line ?>
|
|
<?php $_post = &get_post($post->ID); $classname = ($_post->iconsize[0] <= 128 ? 'small' : '') . 'attachment'; // This lets us style narrow icons specially ?>
|
|
<div class="post" id="post-<?php the_ID(); ?>">
|
|
<h2><a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment"><?php echo get_the_title($post->post_parent); ?></a> » <a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2>
|
|
<div class="entry">
|
|
<p class="<?php echo $classname; ?>"><?php echo $attachment_link; ?><br /><?php echo basename($post->guid); ?></p>
|
|
|
|
<?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?>
|
|
|
|
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<?php comments_template(); ?>
|
|
|
|
<?php endwhile; else: ?>
|
|
|
|
<p>Sorry, no attachments matched your criteria.</p>
|
|
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
|
|
<?php get_footer(); ?>
|