@mhd27
It looks like you are trying to display the content too in the archive, search and blog pages, right? If yes, then, you can duplicate the file ‘template-parts/content.php’ in your child theme. In this file you will find the below code:
<div class="entry-content">
<?php
if (is_single()) :
the_content();
else :
if (is_sticky()) :
// displaying full content for the sticky post
the_content(sprintf(
/* translators: %s: Name of current post. */
wp_kses('<button type="button" class="btn btn-primary continue-more-link">' . __('Read More <i class="fa fa-arrow-circle-o-right"></i>', 'creative-blog') . '</button> %s', array('span' => array('class' => array()), 'i' => array('class' => array()), 'button' => array('class' => array(), 'type' => array()))), the_title('<span class="screen-reader-text">', '</span>', false)
));
else :
the_excerpt(); // displaying excerpt for the archive pages
endif;
endif;
?>
<?php
wp_link_pages(array(
'before' => '<div class="page-links">' . esc_html__('Pages:', 'creative-blog'),
'after' => '</div>',
));
?>
</div><!-- .entry-content -->
Now, you just need to change the above code with the below one and check:
<div class="entry-content">
<?php
the_content(sprintf(
/* translators: %s: Name of current post. */
wp_kses('<button type="button" class="btn btn-primary continue-more-link">' . __('Read More <i class="fa fa-arrow-circle-o-right"></i>', 'creative-blog') . '</button> %s', array('span' => array('class' => array()), 'i' => array('class' => array()), 'button' => array('class' => array(), 'type' => array()))), the_title('<span class="screen-reader-text">', '</span>', false)
));
?>
<?php
wp_link_pages(array(
'before' => '<div class="page-links">' . esc_html__('Pages:', 'creative-blog'),
'after' => '</div>',
));
?>
</div><!-- .entry-content -->
Thanks.
Regards.
Bishal Napit