Remove Dates from Archived Posts
-
Hello, I want to remove the dates from archived posts. Here is the archive.php file:
<h2 class=”pagetitle”><?php printf(__(‘Archive for the ‘%1$s’ Category’), single_cat_title(”,false)); ?></h2>
<?php endif; ?><?php /* If this is a daily archive */ } elseif (is_day()) { ?>
<h2 class=”pagetitle”><?php printf(__(‘Archive for %1$s’), get_the_time(__(‘F jS, Y’))); ?></h2><?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<h2 class=”pagetitle”><?php printf(__(‘Archive for %1$s’), get_the_time(__(‘F, Y’))); ?></h2><?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<h2 class=”pagetitle”><?php printf(__(‘Archive for %1$s’), get_the_time(‘Y’)); ?></h2>Do I remove code starting from [get_the_time] until the final [)]?
Thank you for your help.
- The topic ‘Remove Dates from Archived Posts’ is closed to new replies.