How to show only Post titles on category pages
-
Hi I need to display only titles of the posts please help here is my archive.php code
<?php global $theme; get_header(); ?>
<div id=”main”>
<?php $theme->hook(‘main_before’); ?>
<div id=”content”>
<?php $theme->hook(‘content_before’); ?>
<h2 class=”page-title”><?php
/* If this is a daily archive */
if (is_day()) { printf( __( ‘Daily Archives: <span>%s</span>’, ‘themater’ ), get_the_date() );/* If this is a monthly archive */
} elseif (is_month()) { printf( __( ‘Monthly Archives: <span>%s</span>’, ‘themater’ ), get_the_date(‘F Y’) );/* If this is a yearly archive */
} elseif (is_year()) { printf( __( ‘Yearly Archives: <span>%s</span>’, ‘themater’ ), get_the_date(‘Y’) );/* If this is a general archive */
} else { _e( ‘Blog Archives’, ‘themater’ ); }
?></h2><?php
if (have_posts()) : while (have_posts()) : the_post();/**
* The default post formatting from the post.php template file will be used.
* If you want to customize the post formatting for your archive pages:
*
* – Create a new file: post-archive.php
* – Copy/Paste the content of post.php to post-archive.php
* – Edit and customize the post-archive.php file for your needs.
*
* Learn more about the get_template_part() function: https://codex.www.ads-software.com/Function_Reference/get_template_part
*/get_template_part(‘post’, ‘archive’);
endwhile;else :
get_template_part(‘post’, ‘noresults’);
endif;get_template_part(‘navigation’);
?><?php $theme->hook(‘content_after’); ?>
</div><!– #content –>
<?php get_sidebars(); ?>
<?php $theme->hook(‘main_after’); ?>
</div><!– #main –>
<?php get_footer(); ?>
- The topic ‘How to show only Post titles on category pages’ is closed to new replies.