-2

記事タイトルに合わせて抜粋。空白の削除に。

記事のタイトルによって抜粋を調整(増減)したい。たとえば ( http://www.webdesignerdepot.com/ ) このサイトでは、記事のタイトルに従って抜粋が調整されています。記事タイトルが大きいと抜粋が減り、逆もまた然り。この抜粋は、投稿タイトルの文字に従って調整されています。

抜粋が追加されていないとします。最初から全部欲しい。私の質問に対する正しい答えである投稿 ( http://www.rlmseo.com/blog/ching-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>&nbsp; <?php the_author(); ?>  </span>
            </span>             

            <span class="mcr-date">
                <i class="icon-calendar-empty"></i>&nbsp; <?php the_time('M j, Y ') ?>      
            </span>

            <span class="mcr-comment">
                <i class="icon-comments"></i> &nbsp;
                <?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>
4

1 に答える 1