修改 functions.php,加入以下內容:
/*移除圖片連結*/
add_filter( 'the_content', 'attachment_image_link_remove_filter' );
function attachment_image_link_remove_filter( $content )
{
$content =preg_replace(array('{]*>}'),array(''),$content);
return $content;
}
/*移除圖片連結*/