Forum Moderators: rogerd & travelin cat
<ul>
<?php require($_SERVER['DOCUMENT_ROOT'] . '/document-root/etc/etc/wp-load.php'); query_posts('showposts=3'); if (have_posts()) : while (have_posts()) : the_post(); ?>
<li> <h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<span>Posted on <?php the_time('l jS F, Y') ?></span><br />
<?php the_excerpt(); ?> </li>
<?php endwhile; else: echo "no posts"; endif; ?>
<?php wp_reset_query(); ?>
</ul> <?php require($_SERVER['DOCUMENT_ROOT'] require('wp-blog-header.php');
function getHeadlines() {
get_currentuserinfo();
$i = 0; if ( have_posts() ) : while ( have_posts() && $i < 4 ) : the_post();
echo "<a href='";
the_permalink();
echo "'>";
the_title();
echo "</a> - ";
$excerpt = get_the_excerpt();
$pos = strpos($excerpt,".");
if( $pos !== false ) {
$excerpt = substr($excerpt,0,$pos + 1);
}
if (strlen($excerpt) > 80) {
$excerpt = substr($excerpt,0,80);
}
echo $excerpt;
echo "<a href='";
the_permalink();
echo "'>[more]</a><br/><br/>";
$i++; endwhile; endif;
}