WP insert post PHP function dynamically generated Custom Fields

<?php  
              $thispostID = $post->ID
              ;?><?php

              query_posts('post_type=services'); while (have_posts()) : the_post();

Needs to get the post id of the master post before querying the services.

Change all references to $post->ID to $thispostID

Leave a Comment