Advertisement
fahimmurshed

How to Remove Astra Post Excerpt from the Post Archive and Keep Read More Button

Nov 18th, 2023
1,125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. add_filter( 'the_excerpt', 'filter_the_excerpt', 10, 2 );
  2. function filter_the_excerpt( $excerpt ) {
  3.     // Return an empty string to remove the excerpt text
  4.     $excerpt = '';
  5.  
  6.     // Add the "Read more" button HTML
  7.     $excerpt .= '<a class="ast-button" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'Read More', 'astra' ) . '</a>';
  8.  
  9.     // Return the modified excerpt
  10.     return $excerpt;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement