Home
Welcome to apocryph.org
apocryph.org is my personal web site, where I post my ramblings as well as all the typical personal web content.
* the following displays a list of the n most recent node titles
* promoted to the home page, and links to the full nodes. If you want to increase/reduce
* the number of titles displayed..simply change $listlength value
*
* This php snippet works with drupal 4.6.
*
*/
$listlength="5";
$output = node_title_list(db_query_range(db_rewrite_sql("SELECT n.nid, n.title, n.created FROM {node} n WHERE n.status = 1 AND n.promote = 1 ORDER BY n.created DESC"), 0, $listlength));
if ($output) {
print "
print $output;
}
?>