这应该对你有帮助。。
<?php
function remove_images( $content )
{
//Run only on the front page, in your case the homepage
if(is_front_page())
{
//Remove the images
$postOutput = preg_replace(\'/<img\\b[^>]++>/i\',\'\', $content);
//Get the first 200 characters only, you can change the number if you want
$postOutput = wp_html_excerpt($postOutput, 200);
return $postOutput;
}
return $content;
}
add_filter( \'the_content\', \'remove_images\', 100 );
?>
将此代码放入
functions.php
文件