Simple wordpress function to remove more link without plugin, easy way to remove or replace more link to dots in wordpress.

How To Remove More Link In WordPress

Using the_content_more_link filter, we will remove or replace more link to dots easily and without plugin.

Function

This is function to remove more link, copy function code and paste it in your functions.php file, function code:

function WPTime_remove_more_link(){
    return null;
}
add_filter( 'the_content_more_link', 'WPTime_remove_more_link' );

And this function to replace more link to dots:

function WPTime_replace_more_link() {
    return '<span> [...]</span>';
}
add_filter( 'the_content_more_link', 'WPTime_replace_more_link' );

After replace more link to dots, will be like this:

Remove More Link In WordPress