Gifari Industries - BD Cyber Security Team
Home
/
home
/
decohaslibrary
/
bist
/
wp-content
/
themes
/
educollege
/
template-parts
/
✏️
Editing: content-single.php
<?php /** * Template part for displaying posts. * * @link https://codex.wordpress.org/Template_Hierarchy * * @package Theme Palace * @subpackage Educollege * @since Educollege 1.0.0 */ $options = educollege_get_theme_options(); $class = has_post_thumbnail() ? '' : 'no-post-thumbnail'; ?> <article id="post-<?php the_ID(); ?>" <?php post_class( 'clear ' . $class ); ?>> <div class="entry-meta"> <?php if ( ! $options['single_post_hide_author'] ) : echo educollege_author( get_the_author_meta( 'ID' ) ); endif; if ( ! $options['single_post_hide_date'] ) : educollege_posted_on(); endif; ?> </div><!-- .entry-meta --> <div class="entry-container"> <div class="entry-content"> <?php the_content( sprintf( /* translators: %s: Name of current post. */ wp_kses( __( 'Continue reading %s <span class="meta-nav">→</span>', 'educollege' ), array( 'span' => array( 'class' => array() ) ) ), the_title( '<span class="screen-reader-text">"', '"</span>', false ) ) ); wp_link_pages( array( 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'educollege' ), 'after' => '</div>', ) ); ?> </div><!-- .entry-content --> </div><!-- .entry-container --> <div class="entry-meta"> <?php educollege_single_categories(); educollege_entry_footer(); ?> </div><!-- .entry-meta --> </article><!-- #post-## -->
💾 Save
❌ Cancel