mumptastic
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Fixing WordPress
In reply to: Images in RSS feed…Do you know a good place to start?
Forum: Fixing WordPress
In reply to: Images in RSS feed…I have tried that plugin, but it still does not pull out the images…
Forum: Fixing WordPress
In reply to: One Child to Two Parents… Seems Like a Divorce, With Custody Issues@gl Sorry it took me a day to get you the code. I am sure I could have used a more simple solution, but this did the trick for me.
Forum: Fixing WordPress
In reply to: One Child to Two Parents… Seems Like a Divorce, With Custody Issues<?php if ( (is_page('Baseballs')) or (is_page('All Balls'))){ ?> <ul class="products_page"> <div class="title"><h1>Baseballs</h1></div> <?php query_posts(array('showposts' => 100, 'post_parent' => 97, 'post_type' => 'page', 'orderby' => 'title', 'order' => 'asc')); while (have_posts()){ the_post(); //VITAL $product = get_post_meta($post->ID, 'Product_thumb', true); if ($product == ""){ $product = "http://site.com/IMG/coming_soon.png"; } ?> <li> <a href="<?php the_permalink() ?> class="grid-product"> <img src="<?php echo $product ?>" title="<?php echo the_title() ?>"/> <div class="product_title"><?php the_title(); ?></div><br /> </a> </li> <?php } wp_reset_query(); ?> </ul> <?php } ?>Forum: Fixing WordPress
In reply to: One Child to Two Parents… Seems Like a Divorce, With Custody IssuesI fixed it with a loop!
Viewing 5 replies - 1 through 5 (of 5 total)