Excerpt not filtered
-
Hi, I have set the widget to use the post excerpt and we craft our own excerpts directly rather than taking the content, but as your plugin uses the exceprt content directly from the post object and does not apply the the_excerpt filter to it we cannot add the extra processing needed to these excerpts.
In recent-posts-widget-with-thumbnails.php on line 1683 you have:
if ( ! $this->customs[ 'ignore_excerpt' ] ) { $excerpt = $post->post_excerpt; }
If you changed this to
if ( ! $this->customs[ 'ignore_excerpt' ] ) { $excerpt = get_the_excerpt( $post->ID ); }
Then the filtering should persist.
If you could make this small change it would really help us out. Thanks
Mark
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Excerpt not filtered’ is closed to new replies.