amfarr
Forum Replies Created
-
Forum: Plugins
In reply to: [Etsy Shop] Store home (no category)I found a way around this by just adding all the sections in manually separated by commas.
Mine is [etsy-include=TheBellavie;12017767,12675485,12573151,12473708]
Forum: Fixing WordPress
In reply to: Fatal Error problemawesome thanks!
Forum: Fixing WordPress
In reply to: Display posts in page using mullet loopI definitely will check that out. Thanks again! I wish I could tip you..haha.
Forum: Fixing WordPress
In reply to: Display posts in page using mullet loopMan I have a lot to learn!
One more thing…I promise! How do I make it show only one category?
Forum: Fixing WordPress
In reply to: Display posts in page using mullet loopYou’re awesome! Thanks!
One more thing though…how come when I put the code in for the prev and next pages it doesn’t show up but when I put the appendage /page/2/ it shows up but only the newer page link shows up…also on the second page the same 3 posts that were on the first page show up. Do you know why it’s doing that?
Forum: Fixing WordPress
In reply to: Display posts in page using mullet loopWhat I need is for the following code to do the same thing as the code up there. I need to display blog posts on a page template with a certain category.
<?php $showposts = 3; // -1 shows all posts $do_not_show_stickies = 1; // 0 to show stickies $args=array( 'showposts' => $showposts, 'caller_get_posts' => $do_not_show_stickies, ); $my_query = new WP_Query($args); ?> <?php if( $my_query->have_posts() ) : ?> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?> <?php //necessary to show the tags global $wp_query; $wp_query->in_the_loop = true; ?> <div id="post-<?php the_ID() ?>" class="post"> <div id="postthmb"> <img src="<?php echo get_post_meta($post->ID, "Thumbnailbg", true);?>" /> </div> <div id="posttext"> <h2 class="post-title"><a href="<?php the_permalink() ?>" title="<?php the_title() ?>" rel="bookmark"><?php the_title() ?></a></h2> <div class="post-meta"><?php the_time('F j, Y'); ?></div> <div class="post-content"> <?php the_excerpt('Click here to read more »'); ?> </div> <div id="readmorej"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">READ MORE...</a></div> </div> </div> <?php endwhile; ?> <?php else : ?> <h2 class="center">Not Found</h2> <p class="center">Sorry, but you are looking for something that isn't here.</p> <?php get_search_form(); ?> <?php endif; ?>Forum: Plugins
In reply to: Which plugin is this website using?Thanks!
Forum: Fixing WordPress
In reply to: How to I get Featured Post to not show on previous post pages?I fixed it! I just removed this and now it shows the right amount of posts on each page.
<?php if( $post->ID == $feature_post_id ) continue; ?>I toyed around with the “paged” property but I didn’t get the wanted results. The “featured” tagged posts will still be included but it’s the simplest solution.
Forum: Fixing WordPress
In reply to: How to I get Featured Post to not show on previous post pages?That sounds way to complicated for me. Is there a way to point the previous posts to a different layout so that they aren’t in boxes like that, say the archives.php or something else? Would that be easier?
Forum: Fixing WordPress
In reply to: How to I get Featured Post to not show on previous post pages?Forum: Fixing WordPress
In reply to: How to I get Featured Post to not show on previous post pages?Thanks alchymyth! That fixed that problem, however, my other problem still seems to persist.
It shows the right amount of posts on each page but if you click on previous posts there is one space that isn’t filled, is there a way to tell the front page to show 3 posts and the rest to show 4?