관리-도구
편집 파일: content.php
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <!-- Article Listing Content --> <header class="entryHeader"> <?php the_title( sprintf( '<h3 class="entryTitle"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h3>' ); ?> <div class="thumbImage"> <?php if ( has_post_thumbnail() ) : ?> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" > <?php the_post_thumbnail('civic-plumbing-thumb'); ?> </a> <span class="catLink"> <?php //if there are categories $category = get_the_category(); if($category[0]){ //echo '<a href="' . esc_url(get_category_link($category[0]->term_id )) . '">' . esc_attr($category[0]->cat_name) . '</a>'; } ?> </span> <?php else: ?> No image <?php endif; ?> </div> </header> <!-- .entry-header --> <?php if ( 'post' == get_post_type() ) : ?> <div class="entryMeta"> <?php we_repair_it_posted_on(); ?> </div><!-- .entry-meta --> <?php endif; ?> <!-- post content --> <div class="postContent"> <?php the_excerpt(); //echo substr($test, 0, 3); ?> </div> </article>