[Solved] Solution for incompatibility with Newsphere theme
-
File: /wp-content/themes/newsphere/inc/hooks/blocks/block-archive-list.php
Change Line: 48
$excerpt = newsphere_get_excerpt($excerpt_length, get_the_content());To:
$excerpt = the_excerpt();Cheers!
MLG4035 -
I noticed that excerpts still show bare shortcodes. You can add the following code to the Newsphere theme's functions.php file to strip shortcodes from excerpts.
// Remove Shortcodes from excerpt function newsphere_remove_shortcode_from_excerpt($content) { $content = strip_shortcodes( $content ); return $content; } add_filter('the_excerpt', 'newsphere_remove_shortcode_from_excerpt'); -
@mlg4035 Thank you very much!
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login