Hello there,
Can someone please help with this. I would like to my posts to have excerpt on the home page. This is currently the case for Archives and search results posts.
I saw this in the post-entry.php:
<!-- Post Entry Begin -->
<?php
// only display the full content on
// the blog home page, single blog posts,
// and static Pages
if (
(
// WordPress conditional tag that returns true if
// the current page is an archive index page
is_archive()
// WordPress conditional tag that returns true if
// the current page is a search results page
|| is_search()
)
// WordPress conditional tag that returns true if
// the current page has an image mime-type attachment
&& ! wp_attachment_is_image()
// WordPress conditional tag that returns true if
// the current post has the 'link' post-format type
&& ! get_post_format()
) {
// Output the Post Excerpt
However, I'm still unable to figure out how to change this up to get the desire outcome.
Thank you.