Forum Replies Created
- AuthorPosts
- LuLaRoeMarcieParticipant
Nevermind. I just installed Easy Custom Auto Excerpts plugin and that worked. Case closed.
LuLaRoeMarcieParticipantIt’s not working, and I think it must be something with the comment.php file since that is what this link is saying for the Twenty Fifteen theme.
https://wordpress.org/support/topic/wont-show-summary-only-full-post-on-home-page-posts
This is what I have for content.php right now:
<?php
/**
* Template part for displaying posts.
*
* @package Square
*/?>
<article id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<figure class=”entry-figure”>
<?php
if(has_post_thumbnail()):
$square_image = wp_get_attachment_image_src( get_post_thumbnail_id() , ‘square-blog-thumb’ );
?>
“>” alt=”<?php echo esc_attr( get_the_title() ) ?>”>
<?php endif; ?>
</figure><div class=”sq-post-wrapper”>
<header class=”entry-header”>
<?php the_title( sprintf( ‘<h2 class=”entry-title”>‘, esc_url( get_permalink() ) ), ‘</h2>’ ); ?><?php if ( ‘post’ === get_post_type() ) : ?>
<div class=”entry-meta”>
<?php square_posted_on(); ?>
</div><!– .entry-meta –>
<?php endif; ?>
</header><!– .entry-header –><div class=”entry-content”>
<?php
the_content( __( ‘Continue reading →’, ‘square’ ));
?><?php
wp_link_pages( array(
‘before’ => ‘<div class=”page-links”>’ . esc_html__( ‘Pages:’, ‘square’ ),
‘after’ => ‘</div>’,
) );
?>
</div><!– .entry-content –><footer class=”entry-footer”>
<?php square_entry_footer(); ?>
</footer><!– .entry-footer –>
</div>
</article><!– #post-## –>LuLaRoeMarcieParticipantThis didn’t work – can you please let me know what else I should do? Thanks!
May 7, 2016 at 11:53 pm in reply to: Sticking Feature Title and Creating Fixed Text for Features #350LuLaRoeMarcieParticipantOf course. My website is http://www.buylularoeonline.com. When you look at the featured sections, the middle one says “Meeting Lula…Lularoe” but I would like it to simply have Blog there and not change with every blog post published. I also would like to know if I can have a fixed intro there instead of just an excerpt of the page.
- AuthorPosts