the_content();
        ?>

						<?php 
        if (function_exists('smartArchives')) {
            smartArchives('both', '');
            ?>

						<?php 
        } elseif (function_exists('wp_smart_archives')) {
            wp_smart_archives();
            ?>

						<?php 
        } elseif (function_exists('srg_clean_archives')) {
            srg_clean_archives();
            ?>

						<?php 
        } else {
            ?>

							<h2><?php 
            _e('Archives by category', 'clea-base');
            ?>
</h2>

							<ul class="xoxo category-archives">
								<?php 
            wp_list_categories(array('feed' => __('RSS', 'clea-base'), 'show_count' => true, 'use_desc_for_title' => false, 'title_li' => false));
            ?>
Exemplo n.º 2
0
			<div id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">

				<?php hybrid_before_entry(); // Before entry hook ?>

				<div class="entry-content">

					<?php the_content(); ?>

					<?php if ( function_exists( 'clean_my_archives' ) ) : echo clean_my_archives(); ?>

					<?php elseif ( function_exists( 'smartArchives' ) ) : smartArchives( 'both', '' ); ?>

					<?php elseif ( function_exists( 'wp_smart_archives' ) ) : wp_smart_archives(); ?>

					<?php elseif ( function_exists( 'srg_clean_archives' ) ) : srg_clean_archives(); ?>

					<?php else : ?>

						<h2><?php _e( 'Archives by category', 'hybrid' ); ?></h2>

						<ul class="xoxo category-archives">
							<?php wp_list_categories( array( 'feed' => __( 'RSS', 'hybrid' ), 'show_count' => true, 'use_desc_for_title' => false, 'title_li' => false ) ); ?>
						</ul><!-- .xoxo .category-archives -->

						<h2><?php _e( 'Archives by month', 'hybrid' ); ?></h2>

						<ul class="xoxo monthly-archives">
							<?php wp_get_archives( array( 'show_post_count' => true, 'type' => 'monthly' ) ); ?>
						</ul><!-- .xoxo .monthly-archives -->