Theme: Preus- Create more than one posts page
-
Hi there,
Right now I have a few category pages set on my menu, but on the actual page it just shows the title of the article. I want to show the title, an excerpt and photo (essentially just like I have on my home page (lifewithlampnsofa.com). Something that looks like this- https://ohsheglows.com/categories/fitness/ for my categories “fitness” running, etc. Here’s what “running” looks like now. https://lifewithlampnsofa.com/category/fitness/running/My theme is Preus and there is no category.php template, just an archive.php template. I don’t know if I need to go in and edit that one or create a new one.
This is the archive template.<?php
/**
* The template for displaying Archive pages.
*
* Learn more: https://codex.www.ads-software.com/Template_Hierarchy
*
* @package Preus
*/get_header(); ?>
<section id=”primary” class=”content-area col-md-8″>
<main id=”main” class=”site-main” role=”main”><?php if ( have_posts() ) : ?>
<header class=”page-header”>
<h1 class=”page-title”>
<?php
if ( is_category() ) :
single_cat_title();elseif ( is_tag() ) :
single_tag_title();elseif ( is_author() ) :
/* Queue the first post, that way we know
* what author we’re dealing with (if that is the case).
*/
the_post();
printf( __( ‘Author: %s’, ‘preus’ ), ‘<span class=”vcard”>’ . get_the_author() . ‘</span>’ );
/* Since we called the_post() above, we need to
* rewind the loop back to the beginning that way
* we can run the loop properly, in full.
*/
rewind_posts();elseif ( is_day() ) :
printf( __( ‘Day: %s’, ‘preus’ ), ‘<span>’ . get_the_date() . ‘</span>’ );elseif ( is_month() ) :
printf( __( ‘Month: %s’, ‘preus’ ), ‘<span>’ . get_the_date( ‘F Y’ ) . ‘</span>’ );elseif ( is_year() ) :
printf( __( ‘Year: %s’, ‘preus’ ), ‘<span>’ . get_the_date( ‘Y’ ) . ‘</span>’ );elseif ( is_tax( ‘post_format’, ‘post-format-aside’ ) ) :
_e( ‘Asides’, ‘preus’ );elseif ( is_tax( ‘post_format’, ‘post-format-image’ ) ) :
_e( ‘Images’, ‘preus’);elseif ( is_tax( ‘post_format’, ‘post-format-video’ ) ) :
_e( ‘Videos’, ‘preus’ );elseif ( is_tax( ‘post_format’, ‘post-format-quote’ ) ) :
_e( ‘Quotes’, ‘preus’ );elseif ( is_tax( ‘post_format’, ‘post-format-link’ ) ) :
_e( ‘Links’, ‘preus’ );else :
_e( ‘Archives’, ‘preus’ );endif;
?>
</h1>
<?php
// Show an optional term description.
$term_description = term_description();
if ( ! empty( $term_description ) ) :
printf( ‘<div class=”taxonomy-description”>%s</div>’, $term_description );
endif;
?>
</header><!– .page-header –><?php /* Start the Loop */ ?>
<?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( ‘content’, get_post_format() );
?><?php endwhile; ?>
<?php preus_content_nav( ‘nav-below’ ); ?>
<?php else : ?>
<?php get_template_part( ‘no-results’, ‘archive’ ); ?>
<?php endif; ?>
</main><!– #main –>
</section><!– #primary –><?php get_sidebar(); ?>
<?php get_footer(); ?>I’ve created a new template where I copied and pasted the archive code and edited what I learned in the “create a category template” on wordpress support and this is the code:
<?php
/**
* The template for displaying Running Cat Page.
*
* Learn more: https://codex.www.ads-software.com/Template_Hierarchy
*
* @package Preus
*/get_header(); ?>
<section id=”primary” class=”content-area col-md-8″>
<main id=”main” class=”site-main” role=”main”><?php if ( have_posts() ) : ?>
<header class=”page-header”>
<h1 class=”page-title”>
<?php
if ( is_category() ) :
single_cat_title();elseif ( is_tag() ) :
single_tag_title();elseif ( is_author() ) :
/* Queue the first post, that way we know
* what author we’re dealing with (if that is the case).
*/
the_post();
printf( __( ‘Author: %s’, ‘preus’ ), ‘<span class=”vcard”>’ . get_the_author() . ‘</span>’ );
/* Since we called the_post() above, we need to
* rewind the loop back to the beginning that way
* we can run the loop properly, in full.
*/
rewind_posts();elseif ( is_day() ) :
printf( __( ‘Day: %s’, ‘preus’ ), ‘<span>’ . get_the_date() . ‘</span>’ );elseif ( is_month() ) :
printf( __( ‘Month: %s’, ‘preus’ ), ‘<span>’ . get_the_date( ‘F Y’ ) . ‘</span>’ );elseif ( is_year() ) :
printf( __( ‘Year: %s’, ‘preus’ ), ‘<span>’ . get_the_date( ‘Y’ ) . ‘</span>’ );elseif ( is_tax( ‘post_format’, ‘post-format-aside’ ) ) :
_e( ‘Asides’, ‘preus’ );elseif ( is_tax( ‘post_format’, ‘post-format-image’ ) ) :
_e( ‘Images’, ‘preus’);elseif ( is_tax( ‘post_format’, ‘post-format-video’ ) ) :
_e( ‘Videos’, ‘preus’ );elseif ( is_tax( ‘post_format’, ‘post-format-quote’ ) ) :
_e( ‘Quotes’, ‘preus’ );elseif ( is_tax( ‘post_format’, ‘post-format-link’ ) ) :
_e( ‘Links’, ‘preus’ );else :
_e( ‘Archives’, ‘preus’ );endif;
?>
</h1>
<?php
// Show an optional term description.
$term_description = term_description();
if ( ! empty( $term_description ) ) :
printf( ‘<div class=”taxonomy-description”>%s</div>’, $term_description );
endif;
?>
</header><!– .page-header –><?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?><?php
$args = array ( ‘category’ => 9, ‘posts_per_page’ => 6);
$myposts = get_posts( $args );
foreach( $myposts as $post ) : setup_postdata($post);
?>
//Style Posts here
<?php endforeach; ?><?php endwhile; ?>
<?php preus_content_nav( ‘nav-below’ ); ?>
<?php else : ?>
<?php get_template_part( ‘no-results’, ‘archive’ ); ?>
<?php endif; ?>
</main><!– #main –>
</section><!– #primary –><?php get_sidebar(); ?>
<?php get_footer(); ?>Any help would be great!!
- The topic ‘Theme: Preus- Create more than one posts page’ is closed to new replies.