This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
neag/content-single.php
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
81 lines (69 sloc)
2.75 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// This is used when viewing a single post. | |
?> | |
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> | |
<header class="entry-header"> | |
<?php /* if ( has_post_thumbnail() ) { | |
echo '<div class="row">'; | |
echo '<div class="col-sm-2">'; | |
the_post_thumbnail(); | |
echo '</div>'; | |
echo '<div class="col-sm-10">'; | |
} */?> | |
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?> | |
<div class="entry-meta"> | |
<ul class="single-author-tags clearfix" > | |
<li class="single-author">by: <strong class="less-strong"> | |
<?php | |
if ( function_exists( 'coauthors_posts_links' ) ) : | |
echo coauthors_posts_links( null, null, null, null, false ); | |
else: | |
printf( '<span class="author vcard"><a class="url fn n" href="%1$s">%2$s</a></span>', | |
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), | |
esc_html( get_the_author() ) | |
); | |
endif; | |
?> | |
</strong></li> | |
<li class="news-story-date"><?php the_time('F j, Y'); ?></li> | |
<li class="single-category"> | |
<ul class="post-categories"> | |
<?php | |
$categories = get_the_category(); | |
$separator = ' '; | |
$output = ''; | |
if($categories){ | |
foreach($categories as $category) { | |
if($category->name !== 'Uncategorized') | |
if($category->name !== 'Home-Featured') | |
if($category->name !== 'News Featured') | |
{ | |
$output .= '<li><a href="'.get_category_link( $category->term_id ).'" title="' . esc_attr( sprintf( __( "View all posts in %s" ), $category->name ) ) . '">'.$category->cat_name.'</a></li>'.$separator; } | |
} | |
echo trim($output, $separator); | |
} | |
?> | |
</ul> | |
</li> | |
</ul> | |
</div><!-- .entry-meta --> | |
</header><!-- .entry-header --> | |
<div class="entry-content clearfix subpage"> | |
<div class="single-content-wrapper"> | |
<!-- <div class="single-featured-image"> | |
<?php the_post_thumbnail('medium') ?> | |
</div> --> | |
<div class="single-content"> | |
<?php the_content(); ?> | |
</div> | |
</div> | |
<?php | |
wp_link_pages( array( | |
'before' => '<div class="page-links">' . __( 'Pages:', 'cs' ), | |
'after' => '</div>', | |
) ); | |
?> | |
</div> | |
<hr /><!-- .entry-content --> | |
</footer><!-- .entry-footer --> | |
</article><!-- #post-## --> |