Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 59525

Remove help link from Read More

$
0
0

Replies: 0

Hi I want to remove the 3 dots which is a help link automatically added to the Read More link
I found this code here
https://wordpress.org/support/topic/remove-3-dots-above-read-more-link/

 /*
 * Remove helip 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
but am not sure where it should go the original post said in a child theme but cant find that and it doesn’t work in Aditional CSS
any ideas thanks

  • This topic was modified 11 minutes ago by andrewgj.
  • This topic was modified 9 minutes ago by andrewgj.
  • This topic was modified 6 minutes ago by andrewgj.

Viewing all articles
Browse latest Browse all 59525

Trending Articles