Add various class to div elements
-
Hi,
I am generating my posts in the database by using a while loop which works good. I now need add about3-4 class names to each div that is wrapping the posts generated from the database.
I am totally confused how to do this. I have this code:
query_posts('posts_per_page&order=ASC'); while(have_posts()) : the_post(); ?> <section class = "container" id="<?php echo get_the_title(); ?>"> <article class = "row <?php echo get_the_title(); ?>"> <h3><?php the_content(); ?></h3> </article> </section> <?php endwhile; wp_reset_query(); ?>
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Add various class to div elements’ is closed to new replies.