/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php $contact_drop = new WP_Query('pagename=contact'); while ($contact_drop->have_posts()) : $contact_drop->the_post(); $do_not_duplicate = $post->ID; ?> <div id="contact-slide"> <h3 class="page-page-title"><?php the_title(); ?></h3> <?php the_content(); ?> </div> <?php endwhile; ?>