コード例 #1
0
		</div>
		
		<div class="content-body">
			<h2><a href="<?php 
        the_permalink();
        ?>
" title="<?php 
        the_title_attribute();
        ?>
"><?php 
        the_title();
        ?>
</a></h2>
                <div class="shareboxoffset"><div class="sharebox">
		       <?php 
        echo linkSharesGen(get_permalink(), get_the_title());
        ?>
 
                </div> </div>			
			
			<div class="entry">
				<?php 
        the_content('Continue Reading');
        ?>
			</div>
		</div>
		<div class="commentliner">    <?php 
        comments_popup_link('&mdash; no comments yet, say something &mdash;', '&mdash; 1 comment, guess who &mdash;', '&mdash; % comments, join the party &mdash;');
        ?>
 </div> 
	</div> <!-- content-item -->
コード例 #2
0
function widget_sf_posts($args)
{
    extract($args);
    ?>

<div class="content-item">
	<?php 
    $cat = get_option(THEME_PREFIX . "featured_content");
    $num = get_option(THEME_PREFIX . "featured_num");
    query_posts("cat={$cat}&showposts={$num}");
    ?>
    
	<?php 
    if (have_posts()) {
        while (have_posts()) {
            the_post();
            ?>
	
	<div class="content-dets">
		<h3>Posted on <?php 
            the_time('M j, Y');
            ?>
</h3>
		
		<ul class="dets">
			<li class="comments-link"><a href="<?php 
            the_permalink();
            ?>
#comments" title=""><?php 
            comments_number('0 Comments', '1 Comment', '% Comments');
            ?>
</a></li>
		</ul>
	</div>
	
	<div class="content-body">
		<h2><a href="<?php 
            the_permalink();
            ?>
" title="<?php 
            the_title_attribute();
            ?>
"><?php 
            the_title();
            ?>
</a></h2>
		
															
                <div class="shareboxoffset"><div class="sharebox">
		       <?php 
            echo linkSharesGen(get_permalink(), get_the_title());
            ?>
 
                </div> </div>
		<div class="entry">
			<?php 
            the_content('Continue Reading');
            ?>
		</div>
		<div class="commentliner">    <?php 
            comments_popup_link('&mdash; no comments yet, say something &mdash;', '&mdash; 1 comment, guess who &mdash;', '&mdash; % comments, join the party &mdash;');
            ?>
 </div> 
	</div>

	<?php 
        }
    } else {
        ?>
	<?php 
    }
    ?>
	
</div> <!-- content-item -->

<?php 
}