ah nice, ok well it looks like I can use this snippet but it looks like it will need to be modified quite a bit. I replaced the example url with the category that I wanted to use on that page but it pulls in more than I want on the page. It pulls the site header in again along with the full posts. Anyway to just pull just the headlines/titles of the post and or a thumbnail of recent/all the posts?
// Get the last 3 posts.
<?php
require(‘https://www.pubagenda.com/category/hermosa-beach’);
?>
<?php query_posts(‘showposts=3’); ?>
<?php while (have_posts()) : the_post(); ?>
” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?>
<?php endwhile;?>