the_excerpt() doesn’t return the Excerpt field content
Have you tried using the example from the codex? if ( ! has_excerpt() ) { the_content(); } else { the_excerpt(); }
Have you tried using the example from the codex? if ( ! has_excerpt() ) { the_content(); } else { the_excerpt(); }
You could publish the post as private, so when you logged in the excerpt is showing on the archive page.
Here is the fix: return $readmore ? $str . ‘<a class=”more-link” href=”‘. get_permalink($post->ID) . ‘”>’. __(‘read more’) .'</a>’ . ‘</a>’ : $str . ‘…’;
get_the_excerpt adding unwanted links to output html
You’ll need to create a new loop – outside of your main loop – using get_posts() and passing the page ID for the ‘About’ page and setting post_type to page Then, inside your new loop simply call get_the_excerpt() Update: From my links: $args = array( ‘post_type’ => ‘page’ ); $myposts = get_posts( $args ); foreach … Read more
I do not know how the plugin prevents you from using the_excerpt(). I guess the reason why the plugin does not want you to use the_excerpt() is as follows: the_excerpt creates an excerpt from an article by cutting it after the first 50 words. This might cut in the middle of a <script>…<script> fragment, which … Read more
You to set the global $post, otherwise your get_the_ID() function won’t work because this code is not in a WordPress loop. function all_excerpts_get_more_link($post_excerpt) { global $post; return $post_excerpt . ‘ <p><a class=”btn btn-secondary understrap-read-more-link” href=”‘. get_the_permalink( get_the_ID() ) . ‘”>’ . __(‘VIEW CASE’, ‘understrap’) . ‘</a></p>’; } add_filter(‘wp_trim_excerpt’, ‘all_excerpts_get_more_link’);
Try below code. add_filter( ‘gettext’, ‘excerpt_gettext’, 10, 2 ); function excerpt_gettext( $translation, $original ) { $post_type = get_post_type( $_GET[‘post’] ); if($post_type == ‘your custom post type’) { $text = strpos($original, ‘Excerpts are optional hand-crafted summaries of your content that can be used in your theme’); if ($text !== false) { return ‘My Custom Excerpt Discription’; … Read more
Keep in mind that a post excerpt is not always just the first X words of a post, so while wp_trim_words() could work under certain situations, it’s a pretty rigid solution. If you don’t want to deal with reverse-engineering the encrypted/obfuscated source file (shame on whoever did that), you might be able to get clever … Read more
Unable to show excerpts