killsurfcity
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: ERROR 404 from home page loop. Other loops working.Thanks for the tip, but I managed to work it out. I had damaged my database somehow. So I downloaded all of my css and theme files, and re-installed the database. When I uploaded my files again, everything worked.
Forum: Themes and Templates
In reply to: Used a template as the base for my own design. What now?Oh, great, that sounds relatively painless. Thanks!
Forum: Fixing WordPress
In reply to: ERROR 404 from home page loop. Other loops working.Can someone please throw me a bone here?
Forum: Fixing WordPress
In reply to: ERROR 404 from home page loop. Other loops working.I’ve rechecked my loop code like 100x. I seriously doubt it’s that. Any other code I should check?
The post is there, in the right category. The right category is being queried. What else do I check?Forum: Fixing WordPress
In reply to: Please help! Every Post link links to the most recent post.thanks for the tip. where would i add it?
Forum: Fixing WordPress
In reply to: Please help! Every Post link links to the most recent post.ok, so i think i found my issue. i have a custom sidebar, sidebarright.php
when i disable that, post links begin working as normal again.so the question is, what did i do wrong here:
<div id="sidebarright"> <?php global $post; $categories = get_the_category(); foreach ($categories as $category) : ?> <h3>Previous posts:</h3> <ul> <?php $posts = get_posts('numberposts=20&category='. $category->term_id); foreach($posts as $post) : ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> <li>View the full archive for<a href="<?php echo get_category_link($category->term_id);?>" title="View all posts filed under <?php echo $category->name; ?>"> <?php echo $category->name; ?> »</a></li> <?php endforeach; ?> </ul> </div>
Forum: Fixing WordPress
In reply to: Please help! Every Post link links to the most recent post.bump!
i keep trying things to fix this, but no luck so far. Can someone please help?
thanks
Forum: Fixing WordPress
In reply to: Please help! Every Post link links to the most recent post.i tried replacing the archive.php file from my modified theme with the original file from “minimalism”, and it did not fix the problem. what other files should i check?
Forum: Fixing WordPress
In reply to: Please help! Every Post link links to the most recent post.so i switched the theme, and the problem went away. so what do i do now?
Forum: Fixing WordPress
In reply to: Please help! Every Post link links to the most recent post.Esmi, no I haven’t. I’m wasn’t sure that wouldn’t mess my layout up. I’m using the core templete structure of minimal with customized css. I was worried that when I switched back I’d lose something. Is this an issue or am I just being too cautious?
Forum: Fixing WordPress
In reply to: Please help! Every Post link links to the most recent post.Thanks John. I’m glad to see someone else is having the same issue (even tho it sucks). Makes me think it might not be something I did. Maybe it’s the most recent wordpress update. Hopefully someone here can give us a hand.
Forum: Fixing WordPress
In reply to: Please help! Every Post link links to the most recent post.esmi,
yeah, i tried deactivating plugins, with no luck.
[edit] just tried resetting my plugins. no luck after that either.one thing i just noticed is that the url for the post is always correct, but for some reason only the most recent post displays.
i’ll give the other stuff a shot, but i suspect it’s not something so simple. as i said, i’m a noob at all this… and i hacked the hell out of the code behind minimalism to make it do what i want. i imagine somewhere is all of that, i screwed something up somehow. that’s my theory anyhow.
thanks for your help!