File: /home/l/e/s/lesanew/www/wp-content/themes/neobeat/inc/blog/templates/parts/post-info/read-more.php
<?php if ( ! post_password_required() ) { ?>
<div class="qodef-e-read-more">
<?php
if ( neobeat_post_has_read_more() ) {
$button_params = array(
'link' => get_permalink() . '#more-' . get_the_ID(),
'button_layout' => 'textual',
'text' => esc_html__( 'Continue Reading', 'neobeat' )
);
} else {
$button_params = array(
'link' => get_the_permalink(),
'button_layout' => 'textual',
'text' => esc_html__( 'Read More', 'neobeat' )
);
}
neobeat_render_button_element( $button_params ); ?>
</div>
<?php } ?>