Sections
-
In WordPress, I am trying to have content from only a certain category be shown in a certain section of the website.
I am using this code in a certain section of my website. If i want content from a specified category to appear in this area, what do I have to do?
<?php if ($aOptions['column2-id'] != '') { query_posts('p=' . $aOptions['column2-id']); } ?> <?php while (have_posts()) : the_post(); ?> <h3><a href="<?php the_permalink() ?>" title="<?php the_title() ?>"><?php the_title() ?></a></h3> <?php the_content(''); ?> <?php endwhile; ?>
Viewing 11 replies - 1 through 11 (of 11 total)
Viewing 11 replies - 1 through 11 (of 11 total)
The topic ‘Sections’ is closed to new replies.