Original template has no excerpt next to thumbnail posts
-
I modified the content.php file so I could display a little text next to the thumbnail image. The wrapping works fine so long as there are no more than a few words.
Once it wraps to a new line, the entire text, the heading, and the meta moves to the next line. I’ve have spent days trying to redo the css, and repositioning the thumbnails lower in the code. In the second scenario, the text wraps around the image, but there is no padding around the margin. Either way, it isn’t working. I am fresh out of ideas.
What am I doing wrong? https://arielshallit.com/wp/
<?php /** * @package untitled */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php if ( '' != get_the_post_thumbnail() ) { ?> <div class="single-thumbnail genericon genericon-link"> <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'untitled' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"> <?php the_post_thumbnail( 'content-img' ); ?> </a> </div><!-- .single-thumbnail --> <div class="header-wrapper"> <?php if ( 'post' == get_post_type() ) : ?> <div class="entry-meta"> <?php untitled_posted_on(); ?> <?php if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) : ?> <span class="comments-link"><?php comments_popup_link( __( '', 'untitled' ), __( '| 1 Comment', 'untitled' ), __( '| % Comments', 'untitled' ) ); ?></span> <?php endif; ?> </div><!-- .entry-meta --> <?php endif; ?> <header class="entry-header"> <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'untitled' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1> </header><!-- .entry-header --> <div class="entry-content"> <?php the_content( __( '<span class="meta-nav">»</span>', 'untitled' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'untitled' ), 'after' => '</div>' ) ); ?> </div><!-- .entry-content --> <?php } else { ?> <header class="entry-header"> <?php if ( 'post' == get_post_type() ) : ?> <div class="entry-meta"> <?php untitled_posted_on(); ?> <?php if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) : ?> <span class="comments-link"><?php comments_popup_link( __( '', 'untitled' ), __( '| 1 Comment', 'untitled' ), __( '| % Comments', 'untitled' ) ); ?></span> <?php endif; ?> </div><!-- .entry-meta --> <?php endif; ?> <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'untitled' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1> </header><!-- .entry-header --> <?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( __( '<span class="meta-nav">»</span>', 'untitled' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'untitled' ), 'after' => '</div>' ) ); ?> </div><!-- .entry-content --> <?php endif; ?> <?php } ?> </article><!-- #post-<?php the_ID(); ?> -->
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Original template has no excerpt next to thumbnail posts’ is closed to new replies.