File Editor
Directories:
.. (Back)
css
genericons
inc
js
languages
page-templates
Files:
404.php
archive.php
comments.php
content-blog-full-content.php
content-blog-image-large.php
content-blog-image-medium.php
content-page.php
content-single.php
content.php
footer.php
functions.php
header.php
home.php
index.php
navigation.php
no-results.php
page.php
readme.txt
search.php
searchform.php
sidebar-footer.php
sidebar-left.php
sidebar.php
single.php
style.css
Create New File
Create
Edit File: content-single.php
<?php /** * The template used for displaying page content in page.php * * @package ThemeGrill * @subpackage Spacious * @since Spacious 1.0 */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php do_action( 'spacious_before_post_content' ); ?> <div class="entry-content clearfix"> <?php the_content(); $spacious_tag_list = get_the_tag_list( '', ' ', '' ); if( !empty( $spacious_tag_list ) ) { ?> <div class="tags"> <?php _e( 'Tagged on: ', 'spacious' ); echo $spacious_tag_list; ?> </div> <?php } wp_link_pages( array( 'before' => '<div style="clear: both;"></div><div class="pagination clearfix">'.__( 'Pages:', 'spacious' ), 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?> </div> <?php spacious_entry_meta(); ?> <?php do_action( 'spacious_after_post_content' ); ?> </article>
Save Changes
Rename File
Rename