0

我正在使用下面的代码来显示latest postsub-domaindomain--这是code我正在使用的--

我需要将post_titlelike的限制字符显示为30

这是代码..

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 回答