[Resolved] customize read more button HTML

Home Forums Support [Resolved] customize read more button HTML

Home Forums Support customize read more button HTML

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #2069317
    Lauren

    Hi, I’d like to add a few classes to the read more button on the blog post excerpts on the blog feed page.

    I’d like to add the classes “js-scroll” and “smc-button” to the paragraphic tag with the class “read-more-container”, and I’d like to add the class “button-wrap” to the link tag with the classes “read-more” and “button” – however, I can’t find that markup in the theme files.

    Thanks!

    #2069332
    Ying
    Staff
    Customer Support
    #2070158
    Lauren

    Hi Ying,

    I added this snippet to my functions.php file in my child theme, but I am not seeing the extra class appear on the blog feed page.

    #2070208
    David
    Staff
    Customer Support

    Hi there,

    can you share a link to the blog so we can take a look?

    #2070228
    Lauren

    Sure: https://staging-skylineconsultingco.kinsta.cloud/marketing-insights/

    I’m not sure if this matters, but the classes on the links on my site are “read-more” and “button” and not “read-more” and “content-read-more” like it is in the php snippet.

    Thanks!

    #2070609
    Ying
    Staff
    Customer Support

    Hi Lauren,

    Try this one instead:

    add_filter( 'generate_excerpt_more_output', 'lh_generate_blog_read_more_button' );
    add_filter( 'generate_content_more_link_output', 'lh_generate_blog_read_more_button' );
    
    function lh_generate_blog_read_more_button( $output ) {
    	$settings = wp_parse_args(
    		get_option( 'generate_blog_settings', array() ),
    		generate_blog_get_defaults()
    	);
    
    	if ( ! $settings[ 'read_more_button' ] ) {
    		return $output;
    	}
    
    	return sprintf( '...%5$s<p class="read-more-container js-scroll smc-button"><a title="%1$s" class="read-more button button-wrap" href="%2$s">%3$s%4$s</a></p>',
    		the_title_attribute( 'echo=0' ),
    		esc_url( get_permalink( get_the_ID() ) . apply_filters( 'generate_more_jump','#more-' . get_the_ID() ) ),
    		wp_kses_post( $settings['read_more'] ),
    		'<span class="screen-reader-text">' . get_the_title() . '</span>',
    		'generate_excerpt_more_output' == current_filter() ? '' : ''
    	);
    }
    #2075749
    Lauren

    That worked! Thank you Ying!

    #2076925
    Ying
    Staff
    Customer Support

    No problem πŸ™‚

    #2108680
    Lauren

    Hi Ying,

    I think that after adding the code, the blog excerpts are no longer followed by an ellipsis (…) – is there a way to add that back in?

    Thanks!

    #2108720
    Ying
    Staff
    Customer Support
    #2108763
    Lauren

    That’s perfect! Thank you so much

    #2108774
    Ying
    Staff
    Customer Support

    You are welcome πŸ™‚

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.