📄 Viewing: /home/navyug/public_html/wp-content/themes/education-base/template-parts/content-page.php
<?php
/**
* Template part for displaying page content in page.php.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Acme Themes
* @subpackage Education Base
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class('init-animate slideInUp1'); ?>>
<?php
if( has_post_thumbnail() ):
$thumbnail = 'full';
echo '<div class="single-feat clearfix"><figure class="single-thumb single-thumb-full">';
// the_post_thumbnail( $thumbnail ); Closed - 27-03-2025
// Add By Suman 27-03-2025
if(is_page( 144 )){
}else{
the_post_thumbnail( $thumbnail );
}
echo "</figure></div>";
endif;
?>
<!-- .single-feat-->
<div class="content-wrapper">
<div class="entry-content">
<?php
the_content();
wp_link_pages( array(
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'education-base' ),
'after' => '</div>',
) );
?>
</div><!-- .entry-content -->
<footer class="entry-footer">
<?php
if( get_edit_post_link()){
edit_post_link(
sprintf(
/* translators: %s: Name of current post */
esc_html__( 'Edit %s', 'education-base' ),
the_title( '<span class="screen-reader-text">"', '"</span>', false )
),
'<span class="edit-link">',
'</span>'
);
}
?>
</footer><!-- .entry-footer -->
</div>
</article><!-- #post-## -->
← Back to directory