Title: andywd7's Replies | WordPress.org

---

# andywd7

  [  ](https://wordpress.org/support/users/andywd7/)

 *   [Profile](https://wordpress.org/support/users/andywd7/)
 *   [Topics Started](https://wordpress.org/support/users/andywd7/topics/)
 *   [Replies Created](https://wordpress.org/support/users/andywd7/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/andywd7/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/andywd7/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/andywd7/engagements/)
 *   [Favorites](https://wordpress.org/support/users/andywd7/favorites/)

 Search replies:

## Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [magic fields page template conditional tags](https://wordpress.org/support/topic/magic-fields-page-template-conditional-tags/)
 *  Thread Starter [andywd7](https://wordpress.org/support/users/andywd7/)
 * (@andywd7)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/magic-fields-page-template-conditional-tags/#post-1747704)
 * Could someone please delete this! I didn’t mean to post it twice!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Magic fields duplicate groups over 2 columns](https://wordpress.org/support/topic/magic-fields-duplicate-groups-over-2-columns/)
 *  Thread Starter [andywd7](https://wordpress.org/support/users/andywd7/)
 * (@andywd7)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/magic-fields-duplicate-groups-over-2-columns/#post-1667513)
 * Thank for your help hunk!
 * Unfortunately that didn’t work! But I’ve now realised that I’m going to have 
   to do it slightly differently, for design reasons.
 * I want to now display the first two posts (not groups) in the left column and
   the other, say 5, posts in the right column. Any ideas how to get it to do this!?
   I’ve tried reading about the loop in the codex but am unsure how it works with
   the loop and MF stuff I already have!?
 * Thank you for your help and any future help! I really appreciate it!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Magic fields duplicate groups over 2 columns](https://wordpress.org/support/topic/magic-fields-duplicate-groups-over-2-columns/)
 *  Thread Starter [andywd7](https://wordpress.org/support/users/andywd7/)
 * (@andywd7)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/magic-fields-duplicate-groups-over-2-columns/#post-1667228)
 *     ```
       <div class="menu">
       	<?php query_posts('category_name=food&order=ASC'); ?>
       	<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
       	<?php $myEvent = get_group('food section'); foreach($myEvent as $event){ ?>
       	<div class="section">
       		<h3><?php echo $event['name'][1]; ?></h3>
       		<div class="price"><?php echo $event['price'][1]; ?></div>
       		<div class="price"><?php echo $event['s-price'][1]; ?></div>
       		<div class="description"><?php echo $event['description'][1]; ?></div>
       		<div class="options"><?php echo $event['options'][1]; ?></div>
       		<div class="price"><?php echo $event['o-price'][1]; ?></div>
       	</div>
       	<?php } ?>
       	<?php endwhile; else: ?>
       		<p>Error Message</p>
       	<?php endif; ?>
       ```
   

Viewing 3 replies - 1 through 3 (of 3 total)