Hello!
I recopied the file into my themes directory (public_html/wp-content/themes/hestia). This is the right place right? Below is the code ive used.
<!– Post Wrap Start–>
<div class=”post hentry ivycat-post”>
<!– This outputs the post TITLE –>
<h2 class=”entry-title”>“><?php the_title(); ?></h2>
<!– This will output of the featured image thumbnail –>
<div class=”featured-image”>
<?php the_post_thumbnail( ‘full’ ); ?>
<!– This outputs the post EXCERPT. To display full content including images and html,
replace the_excerpt(); with the_content(); below. –>
<div class=”entry-summary”>
<?php the_excerpt(); ?>
</div>
<!– This outputs the post META information –>
<div class=”entry-utility”>
<?php if ( count( get_the_category() ) ) : ?>
<span class=”cat-links”>
<?php printf( __( ‘<span class=”%1$s”>Posted in</span> %2$s’, ‘posts-in-page’ ), ‘entry-utility-prep entry-utility-prep-cat-links’, get_the_category_list( ‘, ‘ ) ); ?>
</span>
<span class=”meta-sep”>|</span>
<?php endif; ?>
<?php
$tags_list = get_the_tag_list( ”, ‘, ‘ );
if ( $tags_list ): ?>
<span class=”tag-links”>
<?php printf( __( ‘<span class=”%1$s”>Tagged</span> %2$s’, ‘posts-in-page’ ), ‘entry-utility-prep entry-utility-prep-tag-links’, $tags_list ); ?>
</span>
<span class=”meta-sep”>|</span>
<?php endif; ?>
</div>
</div>
<!– // Post Wrap End –>
Is that all ok?
Everything is right on my site except the excerpt seems to be the table of contents.. id prefer the meta description or first paragraph of my content, but if i change this line <?php the_excerpt(); ?> to ‘the_content’it uses my whole 3000 word post.
If you can suggest a way to fix this that would be great, otherwise i’d be totally happy just to make my images permanent.
Thank you!
Chrissie