Punk Daddy
Forum Replies Created
Viewing 2 replies - 1 through 2 (of 2 total)
-
Forum: Themes and Templates
In reply to: the_content() in single.php<?php get_header(); ?> <!-- SPECIFIC PAGE CONTENT BEGINS HERE --> <div class="container"> <section id="blog"> <div class="hgroup"> <h1><?php the_title(); ?></h1> <h2><i class="icon-time"></i><?php the_time('F jS, Y') ?></h2> <ul class="breadcrumb pull-right"> <li><a href="/blog">back to blog home</a></li> </ul> </div> <div class="row"> <div id="leftcol" class="span8"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <article class="post"> <div class="post_content"> <figure><?php if ( has_post_thumbnail() ) {the_post_thumbnail();} ?></figure> <?php the_content(); ?> </div> </article> <ul class="pager"> <li class="previous disabled"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'twentytwelve' ) . '</span> %title' ); ?></li> <li class="next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'twentytwelve' ) . '</span>' ); ?></li> </ul> <?php endwhile; // end of the loop. ?> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
Forum: Themes and Templates
In reply to: the_content() in single.phpIt is a custom built theme created to match my client’s existing site.
Viewing 2 replies - 1 through 2 (of 2 total)