Excerpt displaying
See original GitHub issueHello, i don’t find how to display the excerpt on a list of articles.
<div v-for="article in articles" :key="article._path">
<h2>{{ article.title }}</h2>
<ContentRenderer :value="article" :excerpt="true" />
</div>
this code display all the content of page :
Thanks for help 👍🏼
Issue Analytics
- State:
- Created a year ago
- Comments:12 (5 by maintainers)
Top Results From Across the Web
How to Display Post Excerpts in WordPress Themes
Post excerpts are commonly used on blog index and archive pages to avoid displaying the full text for every article on your WordPress...
Read more >How to Show a WordPress Excerpt in Your Theme
This widget allows you to choose how many posts to display and will show the title, thumbnail, and a small excerpt. You can...
Read more >the_excerpt() | Function - WordPress Developer Resources
Displays the excerpt of the current post after applying several filters to it including auto-p formatting which turns double line-breaks into HTML ...
Read more >How to Fix WordPress Post Excerpt Not Showing for Your Site
This article will show you several different methods that can help you fix the WordPress post excerpt not showing issue on your business ......
Read more >What Is a WordPress Excerpt? (Tips and Tricks) - Kinsta
A WordPress excerpt is basically a summary of a longer article, often used as a replacement on the blog index and archives pages...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
It is possible to do this extraction. The module supports creating custom transformers to manipulate parsed contents. Unfortunately, transformers are not documented yet.
I’ll ping in this issue once the documentation is updated 🙂
<!--mode-->
is a delimiter that is used to determine excerpt paragraphs. You can simply add<!--more-->
in any line of your content and by doing it above paragraphs will become part of the excerpt.