Cameron Roe
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Permalinks not workingOkay thanks. I got it working earlier. Just needed to know where this was.
Forum: Plugins
In reply to: Post Thumbnail being croppedadd_image_size() did the trick. I added it to my plugin and it fixed it all perfectly!
Forum: Fixing WordPress
In reply to: Prev and Next Post links for specific category pageI’m deciding if it would be better to use a custom post type. Considering I only want to display 1 post at a time, I could use singe-{custom-post-type}.php for the actual page and include links for previous post in that category. Would this work any better?
Forum: Fixing WordPress
In reply to: How to display custom posts (uploaded images) on a page.OK! So now I need to display “previous” and “next” links on this page, but I only want to navigate through that particular category that i’m displaying.
Any help?
Forum: Fixing WordPress
In reply to: How to display custom posts (uploaded images) on a page.Fixed it.
I found the category id by going to posts -> categories and looking at the url. Then added:
<?php if ( is_home() ) { query_posts( 'cat=-5' ); } ?>
right before the loop in the main loop.php file.
Now my blog excludes all categories with id = 5.
Thanks for the insight Seacoast. This will have to do for now.
Forum: Fixing WordPress
In reply to: How to display custom posts (uploaded images) on a page.I used:
<?php query_posts( array ( 'category_name' => 'comics', 'posts_per_page' => 1 ) ); ?>
on a separate loop-comic.php and it seems to be working.But the problem is the post still shows up in the blog. I need to void those categories.
Forum: Fixing WordPress
In reply to: How to display custom posts (uploaded images) on a page.It’s not as elegant, but I guess the client will have to do it all in the posts tab. For this particular page, I need to display one image (post) with it’s description at a time. The previous and next links will go through a specific category that these posts are assigned to.