Hi Sakin,
Thanks for your desire to help
I fixed my problem by add :
/* Add Featured Image into the post */
add_theme_support( ‘post-thumbnails’ );
add_image_size( ‘single-post-thumbnail’, 100, 100 );
to Function.php
and i chnage one line in content-single.php
<div class=”entry-content”>
<!– Add Featured image into the post –>
<?php the_post_thumbnail( ‘single-post-thumbnail’ ); ?>
<?php the_content(); ?>
<?php wp_link_pages( array(
‘before’ => ‘<div class=”page-link”><span class=”pages”>’ . __( ‘Pages:’, ‘catchbox’ ) . ‘</span>’,
‘after’ => ‘</div>’,
‘link_before’ => ‘<span>’,
‘link_after’ => ‘</span>’,
) );
?>