Content Issue – Images
-
I have extended the view of my contents using details found on support about extract limit issues.
As per user expiriane
“I have the same issue. I modified the widget for the time being to fix this issue.the issue is in the “includes\functions.php” ~line 178
$html .= wp_trim_words( apply_filters( ‘rpwe_excerpt’, get_the_excerpt() ), $args[‘length’], ‘ …’ );The issue is that the excerpt is pulling in the “read more text” BEFORE it’s being trimmed. Here is my edit to fix the issue:
$html .= wp_trim_words( apply_filters( ‘rpwe_excerpt’, get_the_content() ), $args[‘length’], ‘ …’ );”
Now I get ‘[gallery columns="4" orderby="title"]‘ included from where I have structured images to display in content.
Any help fixing this?
- The topic ‘Content Issue – Images’ is closed to new replies.