摘录根据帖子标题更改。用于删除空格。
我想根据帖子的标题调整(增加或减少)摘录。例如 ( http://www.webdesignerdepot.com/ ) 在本站这里的摘录是根据帖子标题调整的。当帖子标题很大时,摘录会减少,反之亦然。此摘录根据帖子标题中的字母进行了调整。
假设没有添加摘录。我想要一切从头开始。我找到了一个帖子(http://www.rlmseo.com/blog/changeing-excerpt-size-dynamically/),这是对我的问题的正确答案,但代码不起作用 - 它是旧的,没有更新,并且写于 2008 年。
我的 index.php 片段
<div class="mcr-post-area mcr-handheld">
<div class="mcr-item-warp">
<a class="mcr-title2-link" href="<?php the_permalink() ?>"><h2 class="mcr-title2-header"><?php the_title(); ?></h2></a>
<div class="mcr-below-title">
<span class="mcr-author">
<i class="icon-user"></i><span> <?php the_author(); ?> </span>
</span>
<span class="mcr-date">
<i class="icon-calendar-empty"></i> <?php the_time('M j, Y ') ?>
</span>
<span class="mcr-comment">
<i class="icon-comments"></i>
<?php comments_number( 'no responses', 'one response', '% responses' ); ?>
</span>
<div style="clear:both;"></div>
</div>
</div><!--mcr-item-warp-->
<div class="mcr-post-detial" style="height: auto;">
<div style="margin: 0px; padding: 0px; border: 0px;">
<div class="entry-home">
<?php the_excerpt(strlen(the_title())); ?>
<?php the_excerpt(); ?>
</div>
</div>
</div>
</div>