rstarr
Forum Replies Created
-
Forum: Plugins
In reply to: Linking to next attachment from attachment pagedid u find an answer for this? I am trying to figure it out myself.
Thanks!
Forum: Everything else WordPress
In reply to: moved site to root and image paths did not changethanks for the info! when u say stored in the database, does that mean i use php myadmin to eliminate the “subdir” part?
thank you
Forum: Everything else WordPress
In reply to: multiple loops with if statement syntax questionOk, how would i write the code just for this:
If on page A, run this loop:<div id=”pix”>
<?php $my_query = new WP_Query(‘category_name=pix-1-photos&showposts=1’); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<?php echo $post->post_content; ?>
<?php endwhile; ?>
</div>Forum: Everything else WordPress
In reply to: multiple loops with if statement syntax questionYes, but i have pages with page content that is called from the main loop in the page (based on page.php). Depending on what page it is, i want a second loop in the page to call a specific category loop. So the secondary loop code in the page template would say, if this page is A, loop category X, if this page is B, loop category B. so all my code is in one page template.
I’m not sure how category templates would work here because i’m not calling a category page, rather a page based on page.php
does this make sense?