-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
customizados archive e category templates
- Loading branch information
1 parent
015f467
commit 5d68a36
Showing
2 changed files
with
73 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<?php | ||
/** | ||
* The template for displaying archive pages. | ||
* | ||
* @link https://codex.wordpress.org/Template_Hierarchy | ||
* | ||
* @package coletivo | ||
*/ | ||
|
||
get_header(); ?> | ||
|
||
<div id="content" class="site-content"> | ||
|
||
<div class="page-header"> | ||
<div class="container"> | ||
<?php the_archive_title( '<h1 class="page-title">', '</h1>' ); ?> | ||
<?php the_archive_description( '<div class="taxonomy-description">', '</div>' ); ?> | ||
</div><!-- container --> | ||
</div><!-- page-header --> | ||
|
||
<?php if ( function_exists( 'coletivo_breadcrumb' ) ) : ?> | ||
<?php echo coletivo_breadcrumb(); ?> | ||
<?php endif; ?> | ||
|
||
<div id="content-inside" class="container"> | ||
<main id="main" class="site-main" role="main"> | ||
|
||
<?php if ( have_posts() ) : ?> | ||
|
||
<?php while ( have_posts() ) : the_post(); ?> | ||
|
||
<?php | ||
/* | ||
* Include the Post-Format-specific template for the content. | ||
* If you want to override this in a child theme, then include a file | ||
* called content-___.php (where ___ is the Post Format name) and that will be used instead. | ||
*/ | ||
get_template_part( 'template-parts/content', 'list' ); | ||
?> | ||
|
||
<?php endwhile; ?> | ||
|
||
<?php the_posts_navigation(); ?> | ||
|
||
<?php else : ?> | ||
|
||
<?php get_template_part( 'template-parts/content', 'none' ); ?> | ||
|
||
<?php endif; ?> | ||
|
||
</main><!-- #main --> | ||
</div><!--#content-inside --> | ||
</div><!-- #content --> | ||
|
||
<?php get_footer(); ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters