• omg

    (@ontramarketing)


    I have a theme that when I chose to only display a blog excerpt, (on my main blog page) it does not have a “Read More” at the end of the excerpt. I KNOW THAT I CAN A “READ MORE” text via WordPress, but I have to manually enter that, I don’t want that, I have adjusted my CSS so that the excerpt cuts off after 120 words (So the text ends at the same height as my images next to text). How and where would I enter CSS to add text that says “Read More”

    Here is the CSS that I have used to cut off excerpt at 120 words.

    //* Modify the length of post excerpts
    add_filter( ‘excerpt_length’, ‘sp_excerpt_length’ );
    function sp_excerpt_length( $length ) {
    return 120; // pull first 120 words
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi omg.

    I KNOW THAT I CAN A “READ MORE”

    Shouting will not get you help any faster. Also, the code you posted is a PHP function, not CSS. Which theme are you using?

    Thread Starter omg

    (@ontramarketing)

    Hi ddbrownie I founds the solution. THANKS YOUS VERYS MUCH FOR TRYINGS TO HELPS ME OUT OF PROBLEM!!!!! IT IS MUCH MUCH APPRECIATED!!!!!!!!!!!!!!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Blog Excerpt Add Read More’ is closed to new replies.