Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author alex27

    (@alex27)

    Yes, this is how this theme works.

    @mmorier you’ll have to create a child theme to do this.

    After activate the child theme copy wp-content/themes/corpo/loop.php to wp-content/themes/corpo-child/loop.php.

    Edit this file, find

    corpo_excerpt('corpo_excerptlength_teaser');

    on line 29 and change it to

    the_content();

    You’ll now be able to control the placement of the <!--more--> tag. But instead of “Continue reading” you’ll see the text “(more)”, to bring it back create a blank functions.php file inside wp-content/themes/corpo-child/ and place this code

    <?php
    add_filter( 'the_content_more_link', 'corpo_excerpt_more');
    Thread Starter mmorier

    (@mmorier)

    Thanks a lot @jesin.tk a child theme with the change on the line 29 of loop.php is perfect for me !

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘More-Tag does not work’ is closed to new replies.