Hi
Question #1 - I still don't understand. When you are saying "two links" - are these on the same page right next to each other, on a different page altogether?
Can you make an image, a diagram, an example of what you are looking for, perhaps as a jpg file, put it up on a website and link back to it here so I can see a visual of what you are after? Mainly I don't understand the relationship between the two links - part of the same block of display? on another part of the page? A picture will be worth a thousand words...
Not displaying the title is simple - you just remove the line of code that displays the title and leave the rest of the code.
================================
Question 2: to display only certain categories on a page:
as example, the name of the page is "Special Categories"
Create a static page in WordPress called "Special Categories" with a page slug of special-categories - that would be the default page slug for that page name
Open up your page template file
/wp-content/themes/{themename}/page.php
find the start of the WordPress loop
( more or less like this- sometimes one line)
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
paste in this code BEFORE those two lines
<?php
if (is_page('special-categories') {
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts("cat=1,4,30&paged=$paged");
}
?>
Now you have created a page that will displaying only posts from those 3 categories when the page being displayed is Special Categories