0

以下のコードを使用してlatest postfrom sub-domaintoを表示しています --domainこれがcode私が使用しているものです ---

post_title30文字くらいの制限文字を表示する必要があります

これがコードです..

function render_my_recent_posts( $numberposts = 5 ) { ?>

    <ul>
    <?php
        $args = array( 'numberposts' => '5' );
        $recent_posts = wp_get_recent_posts( $args );
        foreach( $recent_posts as $recent ) {
            echo '<li><img src="/images/default-user-avatar-3.jpg"><a href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >' .   $recent["post_title"].'</a> </li> ';
        }
    ?>
    </ul><?php
}

助けはありますか?

ありがとうございました

4

1 に答える 1

0

あなたsubstr($recent["post_title"],0,30)が必要とすることをしますか?

于 2013-01-09T06:03:20.290 に答える