Site icon Hip-Hop Website Design and Development

What code within the WP Sinatra theme generates the phrases “Read More?”

I’m pulling my hair out. I’ve searched and looked for a method to take away the “Read More” hyperlink from my posts (full publish, not excerpt). I’ve tried so as to add the filter under (and different items of code in features.php) promoted in quite a lot of locations on the net. The filter works to show the excerpt right into a full-content publish, however the identical filter can be purported to set the Learn Extra textual content to null. Right here’s what I’m utilizing.

/**
 * Redefine sinatra_excerpt perform.
 * 
 */
perform sinatra_excerpt( $size = null, $extra = null ) {
    the_content();
}

This perform partially works in that it ends in exhibiting the total publish fairly than simply an excerpt. it’s simply the $extra half that doesn’t work.

For what it’s price, I’ve additionally tried varied CSS examples till I’m blue within the face, most using “display:none” on varied components.

I’ve searched your entire batch of information associated to the Sinatra Theme for the string “Read More” and can’t discover a single occasion of it. If I may discover that, I may simply substitute that with an empty string or in any other case alter the code. Does anybody know the place it’s?

Observe: The posts are being generated on a Class web page.

Thanks for any perception you could possibly present.