Go to the WP theme folder, edit "functions.php". Add the following code:
function remove_anchor($data)
{
return $data;
}
add_filter('the_content', 'remove_anchor');
add_filter , , , remove_anchor.
jQuery, , , ( )
$(document).ready(function()
{
$('#post a.some-class-name').click(function()
{
return false;
}
});