Plugin Author
Tom
(@edge22)
Hi there,
If you’re using the “Excerpt” metabox, the plugin will use that full excerpt instead of automatically generating one (and using the first 30 words).
Let me know if that makes sense or not 🙂
I did use the excerpt metabox. I’ll do additonal testing.
Frans
I did additional testing. Both on my test system (WAMP) and production, there is no difference between choosing Excerpt or “Volledig” (this is the Dutch translation, is it Full in English ?). I checked whether Excerpt texts are present in the Excerpt Metabox of the displayed posts: they are in all posts displayed.
– If I choose “None”, no text is given
– If I Choose Excerpt: the first 30 words of the full post are given
– Ig I choose Full: the first 30 words of the full post are given
So why doesn’t the Excerpt selector a different result ? My WP Show Posts version is 1.1.3 ? On the tested page, I also use Lightweight Grid Columns 1.0 and PDF & Print by BestWebSoft 2.0.3.
Thanks !
Frans
Maybe, I’ve found a clue:
– If there a <!–more–> tag in a post, the Excerpt is not given in a WP Show Posts item (even when the Content Type is “Excerpt”);
– If there isn’t a <!–more–> tag in a post, the Excerpt is given correctly.
Is this normal or is it a bug ? In other words, can I display the Excerpt text in a WP Show Post item, even if there is a <!–more–> tag in the post ?
Thanks !
Frans
Plugin Author
Tom
(@edge22)
Yes, you can get around that with a filter:
add_filter( 'wpsp_more_tag', '__return_null' );
Adding PHP: https://docs.wpshowposts.com/article/adding-php/
Let me know if that helps or not 🙂