1

WordPress では、タイトルの長さに応じて抜粋の長さを変更できますか?

私は単にタイトルを次のように呼んでいます:

<?php the_title(); ?>

そして抜粋:

 <?php html5wp_excerpt('html5wp_index'); // in my functions.php I set the length ?>

関数.php

function html5wp_index($length);
{
    return 25;

}

たとえば、タイトルが 15 文字の場合、抜粋は 10 文字しかないのでしょうか?

4

1 に答える 1