nesta303
Forum Replies Created
-
Forum: Plugins
In reply to: query_posts problem!thank you for the feedback.
Forum: Plugins
In reply to: query_posts problem!ok here is the live site:
http://diet.isaacfeldmandesign.com/?cat=3
somehow, the posts aren’t showing at all.
🙁Forum: Plugins
In reply to: query_posts problem!thank you for the quick reply!
ok so i’m moving the site to a live server.
Forum: Plugins
In reply to: query_posts problem!Forum: Plugins
In reply to: query_posts problem!well heres the screenshot: http://s1102.photobucket.com/albums/g451/nesta303/?action=view¤t=screenshot.jpg
i thought i solved it by using WP_query:
thanks,
Isaac
Forum: Plugins
In reply to: query_posts problem!sadly that is true. i was sure i cracked it….
how can i copy the html?
i’m working with chrome
Forum: Plugins
In reply to: query_posts problem!thanks anyway!
Forum: Plugins
In reply to: query_posts problem!I solved the issue by running a WP_Query instead and adding classes to hook-up in css later:
<?php
$featuredPosts = new WP_Query();
$featuredPosts->query(‘showposts=4&cat=13’);
while ($featuredPosts->have_posts()) : $featuredPosts->the_post(); ?>
<span class=”post”>
<h2>“><?php the_title(); ?></h2>
<div class=”post_content”>
<?php the_content(); ?>
</div>
</span><!–End post–>
<?php endwhile; ?>Forum: Plugins
In reply to: query_posts problem!OK so heres the entire category page pastebin link
Forum: Plugins
In reply to: query_posts problem!thank you for the quick reply!
but i’m working on a local server. can i paste the output html or the php file itself somewhere?