𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/albatroz/public_html/wp-content/themes/flato//content-single_original.php
<?php
/**
* The template used for displaying post content in single.php
*
* @package Theme Meme
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?>>
<header class="entry-header">
<h1 class="entry-title"><?php the_title(); ?></h1>
<div class="entry-meta">
<?php themememe_posted_on(); ?>
<?php if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) : ?>
<span class="comments-link">
<i class="fa fa-comments"></i>
<?php comments_popup_link( __( '0 Comments', 'themememe' ), __( '1 Comment', 'themememe' ), __( '% Comments', 'themememe' ) ); ?>
</span>
<?php endif; ?>
<!-- .entry-meta --></div>
<!-- .entry-header --></header>
<div class="clearfix entry-content">
<?php the_content(); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'themememe' ),
'after' => '</div>',
) );
?>
<!-- .entry-content --></div>
<footer class="entry-meta entry-footer">
<?php if ( 'post' == get_post_type() ) : ?>
<?php
$categories_list = get_the_category_list( __( ', ', 'themememe' ) );
if ( $categories_list && themememe_categorized_blog() ) :
?>
<span class="cat-links">
<i class="fa fa-folder-open"></i>
<?php printf( __( '%1$s', 'themememe' ), $categories_list ); ?>
</span>
<?php endif; ?>
<?php
$tags_list = get_the_tag_list( '', __( ', ', 'themememe' ) );
if ( $tags_list ) :
?>
<span class="tags-links">
<i class="fa fa-tags"></i>
<?php printf( __( '%1$s', 'themememe' ), $tags_list ); ?>
</span>
<?php endif; ?>
<?php endif; ?>
<span class="bookmark-link">
<i class="fa fa-bookmark"></i>
<?php printf( __( '<a href="%1$s" rel="bookmark">Bookmark</a>', 'themememe' ), get_permalink() ); ?>
</span>
<?php edit_post_link( __( 'Edit', 'themememe' ), '<span class="edit-link"><i class="fa fa-pencil"></i>', '</span>' ); ?>
<!-- .entry-footer --></footer>
<!-- #post-<?php the_ID(); ?> --></article>