| name | language | licence |
|---|---|---|
| SHOW DIFFERENT AMOUNT OF POSTS ON WORDPRESS HOME PAGE THAN OTHER PAGES | PHP | BSD |
| ANAGE MULTIPLE WORDPRESS SITES WITH ONE DATABASE AND ONE CODE BASE | PHP | BSD |
| WORDPRESS QUERY POSTS OF CERTAIN CUSTOM FIELD VALUES | PHP | BSD |
| WORDPRESS LOAD JQUERY | PHP | BSD |
| WORDPRESS GET CONTENT | PHP | BSD |
| WORDPRESS: LATEST POSTS FROM CATEGORY | PHP | BSD |
| WORDPRESS QUERY POST FOR A SPECIFIC PAGE | PHP | BSD |
| Social bookmarking of posts | PHP | BSD |
< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 >
language: PHP
licence: BSD
WORDPRESS QUERY POST FOR A SPECIFIC PAGE
options: view full snippet • send to code collector
<?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; ?>



library
buttons (3)
wp (93)