如果我在帖子的开头放一张图片,我的内容就会在主页上消失。但当我单击“阅读更多”按钮时,它会显示全部内容(single.php)
index.php
<?php
if (strlen(get_the_content()) > 10) {
$content = get_the_content();
echo str_replace(\' \', \'\', substr($content, 0, 50)). "....";
?>
即使我在帖子的开头添加了一张图片,如何在主页上显示内容摘要?
非常感谢您的帮助。。。。