doranpalmer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fatal Error: Class ‘Walker’ not foundAny WP support out there?
Forum: Fixing WordPress
In reply to: Fatal Error: Class ‘Walker’ not foundAny ideas why I’m getting this message?
Forum: Themes and Templates
In reply to: Help neededYou’re looking for something WP doesn’t give you … you need javascript or ajax.
Forum: Themes and Templates
In reply to: ChaoticSoul – First post appears on all pagesNo what he’s referring to is an error I’ve come across where even though you’re viewing page 2 or more of an archive, even the main archive, it still shows the first page of posts.
Not sure what does it but I’d like to have it fixed as well … messing up my theme to work around it.
Forum: Themes and Templates
In reply to: undefined functions in new included theme fileStill trying …
Forum: Themes and Templates
In reply to: Search index for dynamically generated contentI would try a plugin like Search Everything.
Forum: Themes and Templates
In reply to: ChaoticSoul – First post appears on all pagesThat code says to always grab the first post and show it like that. It looks like you’re trying to do a sticky post?
Forum: Themes and Templates
In reply to: WordPress Default layout…You have to change the width of the div with id content in the style sheet.
Forum: Themes and Templates
In reply to: Show second last postUse the offset parameter and set it to 1. Kind of like how you got the one cat excluded from your other post here. Exact usgae depends on how you’re using it though.
But with any query_posts based function, it’d be the offset=1 parameter.
Forum: Themes and Templates
In reply to: Sidebar Question..There are a few ways to do it with conditional tags.
see here: https://codex.www.ads-software.com/Conditional_Tags
You’d probably be most interested in the is_home() tag.
Forum: Themes and Templates
In reply to: Add unique class to each tag in the_tagsThe trick is to have each tag in a span with a class of the tag name, then you just need to create a new css class for every tag name with the styling you want.
Forum: Themes and Templates
In reply to: undefined functions in new included theme fileAny ideas?
Forum: Themes and Templates
In reply to: My Recent Posts Homepage and a PHP QuestionNot sure if you want old or new at the top, but you can change that with the query_posts. order=DESC will put newest at the top, and you can put the oldest at the top by changing DESC to ASC.
Forum: Themes and Templates
In reply to: My Recent Posts Homepage and a PHP QuestionThis should do it for you.
<div id="upcomingacts"> <li id="recent_posts"> <ul> <?php query_posts("showposts=3&orderby=date&order=DESC"); ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post();?> <li> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li> <?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 endif; ?> </ul> </li> </div><!-- end of upcoming acts -->
Forum: Themes and Templates
In reply to: What’s the 1st thing I should look for in a theme?Pick one that is visually appealing to you and worry about the rest later. Good thing about WP is as long as you aren’t changing a theme a lot, you can always just activate a new one.
I myself look for themes with the right layout as far as sidebars, header, and footer, then I edit the theme to add new widget areas where I want them, and change pretty much every aspect of the theme except for the layout.