8

Before Timber version 1.3.1, if you wanted to change the Read More text for a post preview, you could use {{ post.get_preview(50, 'false', 'Keep Reading') }}. This function has been deprecated and it is recommended to use {{ post.preview }}, but it doesn't seem to have the ability to filter the Read More text easily.

Gchtr
  • 2,749
  • 2
  • 18
  • 28
Wes Cole
  • 128
  • 2
  • 6

1 Answers1

17

It doesn’t seem easy, probably because it isn’t documented yet. But we’re working on it!

{{ post.preview }} returns a PostPreview object, which is a chainable object. This means that you can change the output of the preview by adding methods.

In your example, when you want to change the read-more text:

{{ post.preview.read_more('More!') }}

If you’d also want to change the length to 10 words only, you could do something like this:

{{ post.preview.length(10).read_more('More!') }}
Gchtr
  • 2,749
  • 2
  • 18
  • 28