davereed
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Need help with a conditional tag and categoriesCool. Thanks!
Forum: Themes and Templates
In reply to: Need help with a conditional tag and categoriesKafkaesqui: I could use that as a plugin!
Forum: Fixing WordPress
In reply to: posts_nav_link with permalink structure failsI have a similar problem. The post_nav_link works fine on the category and archive pages. My problem is on the main page. When you click on the “Previous entries” link it goes to /page/2/ but loads the same entries as page 1. This continues on if you keep clicking the “previous entries” link.
I’m running 1.5.2 with the Kubrick theme. I’ve played with the CSS, but the Kubrick files are basically untouched. Anyone had this happen?
Forum: Plugins
In reply to: Plugin: Static front pageHi, the plugin does exactly what I need, but on the page in question I’m getting the “Filed Under” category name and date inserted as if it was a regular blog post. This doesn’t happen with the plugin off. Do I need to change some code somewhere?
thanks.
Forum: Fixing WordPress
In reply to: need help with feedsThanks guys, that got it! I’m gonna re-read all the feed material in the codex again…
Forum: Fixing WordPress
In reply to: Help with small link problem!Well, I have followed the directions to the letter and I’m still having trouble. I have two categories: links (1) and feeds (2). The Links displays just fine using the wp_get_links tag but when I copy and paste that section of code, rename it Feeds and substitute 2 for 1 in the id spot I get parse error message and the entire sidebar is gone.
I’m using the Dimension 2k theme after tweaking it:
http://www.davereed.org/index.phpHere’s the problematic section of code:
<!-- Links Start -->
<?php /* If this is the frontpage */ if (is_home()) { ?>
<div class="theme_sidebar_box">
<div class="theme_sidebar_box_header"><div class="theme_sidebar-headline_links">Links</div></div>
<div class="theme_sidebar_box_main">
<div class="categories">-
<?php wp_get_links(1); ?>
</div>
</div>
<div class="theme_sidebar_box_footer"> </div>
</div>
<!-- Links end --><!-- Feeds Start -->
<?php /* If this is the frontpage */ if (is_home()) { ?>
<div class="theme_sidebar_box">
<div class="theme_sidebar_box_header"><div class="theme_sidebar-headline_links">Links</div></div>
<div class="theme_sidebar_box_main">
<div class="categories">-
<?php wp_get_links(2); ?>
</div>
</div>
<div class="theme_sidebar_box_footer"> </div>
</div>
<!-- Feeds end -->Forum: Themes and Templates
In reply to: Kubrick – including sidebar in pagesIt seems pretty easy to me. Maybe I’m doing it wrong, but it seems to be working.
In the V1.5 template you just need to insert
<?php get_sidebar(); ?>toward the bottom above
<?php get_footer();?>in the single.php file.
Forum: Fixing WordPress
In reply to: Header Image Link and Sidebar IssuesElitist, I think you did it correctly. I was having the same problems. I think the difference is in the WordPress specific version of Kubrick.
Forum: Fixing WordPress
In reply to: uploading images through email?thanks!
Forum: Everything else WordPress
In reply to: sending posts on other pages than indexI’m also curious about this. I am looking to have a WP site with multiple blogs. I suppose I can just create a slew of subdirectories and install WP into each? The alternative that I like better is to have posts from different bloggers displayed on seperate pages of the same blog. Is that even possible?
Anyone played around with this idea?