コード例 #1
0
    /**
     * Prints HTML with tags information for the current post. ALso adds the edit button.
     *
     * @since tempera 0.9
     */
    function tempera_posted_after()
    {
        global $temperas;
        foreach ($temperas as $key => $value) {
            ${"{$key}"} = $value;
        }
        $tag_list = get_the_tag_list('', ', ');
        if ($tag_list && $tempera_blog_show['tag']) {
            ?>
		<span class="footer-tags"><i class="icon-tag icon-metas" title="<?php 
            _e('Tags', 'tempera');
            echo '"> </i>' . $tag_list;
            ?>
 </span>
     <?php 
        }
        edit_post_link(__('Edit', 'tempera'), '<span class="edit-link icon-metas"><i class="icon-edit  icon-metas"></i> ', '</span>');
        cryout_post_footer_hook();
    }
コード例 #2
0
ファイル: content-status.php プロジェクト: JustManG/Kursovaya
			<?php 
    wp_link_pages(array('before' => '<div class="page-link"><span>' . __('Pages:', 'mantra') . '</span>', 'after' => '</div>'));
    ?>
		</div><!-- .entry-content -->
		<?php 
}
cryout_post_after_content_hook();
?>
		<footer class="entry-meta3">
	<?php 
$tag_list = get_the_tag_list('', ', ');
if ($tag_list) {
    ?>
	<span class="bl_tagg"><?php 
    _e('Tagged', 'mantra');
    print ' ' . $tag_list;
    ?>
</span>
 				<?php 
}
?>
			<?php 
edit_post_link(__('Edit', 'mantra'), '<span class="edit-link">', '</span>');
cryout_post_footer_hook();
?>
		</footer><!-- #entry-meta -->
	</article><!-- #post-<?php 
the_ID();
?>
 -->
コード例 #3
0
ファイル: theme-loop.php プロジェクト: jlederman/subproj
    /**
     * Prints HTML with tags information for the current post. ALso adds the edit button.
     *
     * @since parabola 0.9
     */
    function parabola_posted_after()
    {
        ?>
 	<footer class="entry-meta">
	<?php 
        $tag_list = get_the_tag_list('', ', ');
        if ($tag_list) {
            ?>
	<div class="footer-tags"><span class="bl_tagg"><?php 
            _e('Tagged', 'parabola');
            echo '</span> &nbsp;&nbsp;' . $tag_list;
            ?>
 </div>
     <?php 
        }
        edit_post_link(__('Edit', 'parabola'), '<span class="edit-link">', '</span>');
        cryout_post_footer_hook();
        ?>
	</footer><!-- #entry-meta -->
<?php 
    }