Site logo

[Resolved] Change "Read more" in custom post types

Home Forums Support [Resolved] Change "Read more" in custom post types

Home Forums Support Change "Read more" in custom post types

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #677382
    caleidoscopic

    Hi!
    I’d like to change “Read more” text in custom post types

    #677445
    Leo
    Staff
    Customer Support

    Hi there,

    You can use this filter:
    https://docs.generatepress.com/article/option_generate_blog_settings/

    So the code should be something like this:

    add_filter( 'option_generate_blog_settings', 'lh_cpt_readmore_label' );
    function lh_cpt_readmore_label( $options ) {
        if ( is_post_type_archive( 'CPT_name' ) ) {
    	$options['read_more'] = 'My custom read more label';
        }
      
        return $options;
    }

    Adding PHP: https://docs.generatepress.com/article/adding-php/

    Let me know if this helps 🙂

    #677716
    caleidoscopic

    Perfect! Thanks!

    #678050
    Leo
    Staff
    Customer Support

    No problem 🙂

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