July 18, 2016 at 9:50 am
#46005
Theme Horse Support Team
Keymaster
Hi david.danaan,
Just copy paste below code in your child theme functions.php
<?php
/****************************************************************************************/
if ( ! function_exists( 'attitude_theloop_for_single' ) ) :
/**
* Fuction to show the single post content.
*/
function attitude_theloop_for_single() {
global $post;
if( have_posts() ) {
while( have_posts() ) {
the_post();
do_action( 'attitude_before_post' );
?>
<section id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<article>
<?php do_action( 'attitude_before_post_header' ); ?>
<header class="entry-header">
<h1 class="entry-title">
<?php the_title(); ?>
</h1><!-- .entry-title -->
</header>
<?php do_action( 'attitude_after_post_header' ); ?>
<?php do_action( 'attitude_before_post_content' ); ?>
<?php
if( has_post_thumbnail() ) {
$image = '';
$title_attribute = apply_filters( 'the_title', get_the_title( $post->ID ) );
$image .= '<figure class="post-featured-image">';
$image .= '<a href="' . get_permalink() . '" title="'.the_title( '', '', false ).'">';
$image .= get_the_post_thumbnail( $post->ID, 'featured-large', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ) ) ).'</a>';
$image .= '</figure>';
echo $image;
}
?>
<div class="entry-content clearfix">
<?php the_content();
if( is_single() ) {
$tag_list = get_the_tag_list( '', __( ', ', 'attitude' ) );
if( !empty( $tag_list ) ) {
?>
<div class="tags">
<?php
_e( 'Tagged on: ', 'attitude' ); echo $tag_list;
?>
</div>
<?php
}
}
wp_link_pages( array(
'before' => '<div style="clear: both;"></div><div class="pagination clearfix">'.__( 'Pages:', 'attitude' ),
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
'pagelink' => '%',
'echo' => 1
) );
?>
</div>
<?php if(get_the_time( get_option( 'date_format' ) )) { ?>
<div class="entry-meta-bar clearfix">
<div class="entry-meta">
<span class="by-author"><?php _e( 'By', 'attitude' ); ?> <a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php the_author(); ?></a></span> |
<span class="date"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( get_the_time() ); ?>"><?php the_time( get_option( 'date_format' ) ); ?></a></span> |
<?php if( has_category() ) { ?>
<span class="category"><?php the_category(', '); ?></span> |
<?php } ?>
<?php if ( comments_open() ) { ?>
<span class="comments"><?php comments_popup_link( __( 'No Comments', 'attitude' ), __( '1 Comment', 'attitude' ), __( '% Comments', 'attitude' ), '', __( 'Comments Off', 'attitude' ) ); ?></span> |
<?php } ?>
</div><!-- .entry-meta -->
</div>
<?php
do_action( 'attitude_after_post_content' );
}
do_action( 'attitude_before_comments_template' );
comments_template();
do_action ( 'attitude_after_comments_template' );
?>
</article>
</section>
<?php
do_action( 'attitude_after_post' );
}
}
else {
?>
<h1 class="entry-title"><?php _e( 'No Posts Found.', 'attitude' ); ?></h1>
<?php
}
}
endif;
?>
Thank you