File: /var/www/html/ielts-store/wp-content/themes/oceanwp/partials/entry/readmore.php
<?php
/**
 * Displays post entry read more
 *
 * @package OceanWP WordPress theme
 */
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
$icon = '';
if ( is_rtl() ) {
	$icon = oceanwp_icon( 'angle_left', false );
} else {
	$icon = oceanwp_icon( 'angle_right', false );
}
?>
<?php do_action( 'ocean_before_blog_entry_readmore' ); ?>
<div class="blog-entry-readmore clr">
	<a href="<?php the_permalink(); ?>" title="<?php oceanwp_theme_strings( 'owp-string-post-continue-reading', 'oceanwp' ); ?>"><?php oceanwp_theme_strings( 'owp-string-post-continue-reading', 'oceanwp' ); ?><?php echo $icon; ?></a>
	<span class="screen-reader-text"><?php the_title(); ?></span>
</div><!-- .blog-entry-readmore -->
<?php do_action( 'ocean_after_blog_entry_readmore' ); ?>