WordPress v3.2.1
I an using a plugin (magic fields) to create write boxes for wp post. The content in the boxes are the only content for each post. Nothing is entered in the tinymce editor. I display the boxes content using a custom template and a custom loop. However, the content doesn’t show up in the rss2 feed, just the post title and post date. Is there a custom function to get all the content to display in the rss feed?
Here’s the loop to get the get the write boxes input to show on each post.
<div class="content clearfix">
<?php the_content('Read the rest of this entry »'); ?>
<div class="image-container dontwrap"><img src="<?php echo get('image'); ?>" alt="" />
<p><?php echo get('description'); ?></p>
<ul class="info">
<li><span>Breed:</span> <?php echo get('breed'); ?></li>
<li><span>Age:</span> <?php echo get('age'); ?></li>
<li><span>Gender:</span> <?php echo get('gender'); ?></li>
<li><span>Spayed/Neutered:</span> <?php echo get('spayedneutered'); ?></li>
<li><span>Vaccinations:</span> <?php echo get('vaccinations'); ?></li>
<li><span>Good with:</span> <?php echo get('good_with'); ?></li>
<li><span>Special needs:</span> <?php echo get('special_needs'); ?></li>
</ul>
</div>
</div>