Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Remove hellip from read more link
- */
- function remove_helip_from_read_more( $output, $output_filter ) {
- $output = str_replace( '…', '', $output );
- return $output;
- }
- add_filter( 'astra_post_link', 'remove_helip_from_read_more', 10, 2 );
- /* or you can try this */
- function replace_content( $content ) {
- $content = str_replace(array( '[…]', '[...]', '...' ), '', $content);
- return $content;
- }
- add_filter('uagb_single_post_excerpt_grid','replace_content');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement