我想要我的索引或posts overview page 从每个帖子正文内容的char 206开始加载每个帖子摘要。这与所有帖子在帖子正文内容中的一般介绍是一样的。将其加载到索引中。php摘要是无用的信息。
具有get_the_post
我设法加载了内容,但substr
不能正常工作。它过滤页面的内容。不适用于每页的内容(正文)。
代码如下:
<?php
/*
Template name: Blog Page
*/
get_header();
the_post();
?>
<div class="grid-container blog" id="main-container">
<div class="grid-100 mobile-grid-100 nopadding" id="normal-content-wrap">
<h1><?php the_title();?></h1>
<?php
$content = apply_filters( \'the_content\', get_the_content() );
//$content = strip_tags($content);
echo substr($content, 200, 20);
echo $content;
//the_content();?>
</div>
</div>
<?php get_footer(); ?>
正如你所看到的,我注释掉了
strip_tags
我意识到格式很好。我不想丢失格式。我只想让每一篇文章都从char x开始显示该文章的一部分。如何做到这一点?