Display post excerpts, limited by word count
问题 I am working on my php website (Not a Wordpress site) on the main index I display the two newest post. The thing is on the description it shows the entire article I find myself needing to display post excerpts maybe 35 word limit. <?=$line["m_description"]?> <? $qresult3 = mysql_query("SELECT * FROM t_users WHERE u_id=".$line["m_userid"]." LIMIT 1"); if (mysql_num_rows($qresult3)<1) { ?> 回答1: <?php // just the excerpt function first_n_words($text, $number_of_words) { // Where excerpts are