can the_excerpt function also get images?

Ensure that your Theme supports Post Thumbnails, and that the client sets a “Featured Image” for each post. Then, combine the_excerpt() with the_post_thumbnail(), e.g. like so: <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div id=”post-<?php the_ID(); ?>” <?php post_class(); ?>> <div class=”featured-image”><?php the_post_thumbnail(); ?></div> <div class=”post-excerpt”><?php the_excerpt(); ?></div> </div> … Read more

wp_trim_words() does not trim the_content() in WordPress

The problem lies in this line: <?php echo wp_trim_words( the_content(), 55, $moreLink); ?> You call the_content function in there. This function prints all the content and doesn’t return anything. It means that you print the content, and then pass an empty string to the wp_trim_words. It should be: <?php echo wp_trim_words( get_the_content(), 55, $moreLink); ?> … Read more

How to Display Post Excerpts in Admin by Default?

The names of unchecked boxes in Screen Options for Edit Post screen are stored in user’s meta, per individual user, as an array. Insert the following code in your theme’s functions.php: function wpse_edit_post_show_excerpt( $user_login, $user ) { $unchecked = get_user_meta( $user->ID, ‘metaboxhidden_post’, true ); $key = array_search( ‘postexcerpt’, $unchecked ); if ( FALSE !== $key … Read more

Manual excerpts for pages not working on Search

You’re confusing “post type support” – which means enabling “feature” (and therefore MetaBoxes) for a post – with templating. Go into your theme, search for the search.php template in the folder. Add a Child Theme Add a file named search.php to your Child theme and copy/paste the content of your parent themes template file in … Read more

Twenty Eleven home page show only excerpt

The template you’re actually after is “content.php” You’ll want to change this line: <?php if ( is_search() ) : // Only display Excerpts for Search ?> <div class=”entry-summary”> <?php the_excerpt(); ?> </div><!– .entry-summary –> <?php else : ?> <div class=”entry-content”> <?php the_content( __( ‘Continue reading <span class=”meta-nav”>&rarr;</span>’, ‘twentyeleven’ ) ); ?> <?php wp_link_pages( array( ‘before’ … Read more