Title: How to remove &quot;Continue reading&quot; button?
Last modified: August 22, 2016

---

# How to remove "Continue reading" button?

 *  [fhemoorg](https://wordpress.org/support/users/fhemoorg/)
 * (@fhemoorg)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/how-to-remove-continue-reading-button/)
 * hi bro, how to remove continue reading button?
 *     ```
       if ( ! function_exists( 'follet_continue_reading' ) ) :
       /**
        * Return a continue reading kind of text.
        *
        * Take on this function by declaring it before this file is loaded.
        *
        * @param  boolean $display If false, the text will be printed.
        * @param  boolean $excerpt Whether the text is gonna be used next to an excerpt.
        *
        * @return string           Text for "continue reading".
        * @since  1.0
        */
       function follet_continue_reading( $display = false, $excerpt = true ) {
   
       	$bootstrap = _follet_bootstrap_active();
   
       	// Create link in case this is gonna be used next to an excerpt.
       	if ( $excerpt ) {
       		add_filter( 'follet_continue_reading', '_follet_continue_reading_excerpt_link' );
       	}
   
       	$continue_reading = sprintf(
       		__( '%1$sContinue reading %2$s', 'follet' ),
       		sprintf( '<span class="meta-nav%s">', $bootstrap ? ' btn btn-primary btn-lg btn-block' : '' ),
       		sprintf( '%s</span>', apply_filters(
       			'follet_continue_reading_icon', '&nbsp;<span class="icon icon-next"></span>'
       		) )
       	);
   
       	$continue_reading = apply_filters( 'follet_continue_reading', $continue_reading );
   
       	if ( $display ) {
       		echo $continue_reading;
       	}
   
       	return $continue_reading;
   
       }
       endif;
       ```
   

The topic ‘How to remove "Continue reading" button?’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/follet/1.1.1/screenshot.png)
 * Follet
 * [Support Threads](https://wordpress.org/support/theme/follet/)
 * [Active Topics](https://wordpress.org/support/theme/follet/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/follet/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/follet/reviews/)

 * 0 replies
 * 1 participant
 * Last reply from: [fhemoorg](https://wordpress.org/support/users/fhemoorg/)
 * Last activity: [11 years, 4 months ago](https://wordpress.org/support/topic/how-to-remove-continue-reading-button/)
 * Status: not resolved