kensavage
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Making page navigation pluginYes GamerZ I have your posts pagenavi and it works great. I was talking about listing off pages using WP.
Forum: Fixing WordPress
In reply to: Making page navigation pluginYou can see my current page listing on my site. https://www.kensavage.com
Forum: Fixing WordPress
In reply to: How can we Podcast now with 2.0?seems 2.0 podcasting working for me. Atleast the rss feed has the enclosures. Anyone know how to make an rss feed from my podcasting category?
Forum: Fixing WordPress
In reply to: How can we Podcast now with 2.0?ANyone have any idea how to enclose the itunes taggs too?
Forum: Fixing WordPress
In reply to: How can we Podcast now with 2.0?Yea but there’s nothing in there about the new 2.0 version and how it treats podcasting now. Also how do we go about editing things for all teh iTunes tags?
Forum: Fixing WordPress
In reply to: How can we Podcast now with 2.0?the enclosure tags show up for me in my RSS feed for 2.0. Check your rss feed.
Forum: Fixing WordPress
In reply to: How can we Podcast now with 2.0?I guess it’s as easy as just linking to the full url path of the mp3 in the body of the post but how do we get a specific RSS feed for podcast posts only?
Also how do we add all the enclosures to the feed to satisfy iTunes?
Thx for any help.
Forum: Plugins
In reply to: imagecreatetruecolor() errorSo I need to upgrade my GD?
Any way around this in WP2?
Forum: Fixing WordPress
In reply to: WP 404 on permalinksOK I found that using the word archives in my path for the permalink was the problem. I switched it to %category% and all my links have now changed but they are working.
Any ideas why using archives won’t work??
I hope this doesn’t mess with my search engine ranks.
Forum: Fixing WordPress
In reply to: WP 404 on permalinksYes I’ve done this and I still get the same problem with the permalinks not working and giving me a 404.
Although something I did find was if I switch to the default structure then all the links work ok. Switching back to my custom /index.php/archives/%postname%/ messes everything back up again.
Forum: Fixing WordPress
In reply to: WP 404 on permalinksI ran the upgrade.php and not the install.php as the codex said to for wp2.0
install.php said that my blog was already installed.
Forum: Fixing WordPress
In reply to: WP 404 on permalinksYes I read that but how do I re-generate all my links?
Forum: Plugins
In reply to: show posts 11-20Teh above code is taking posts 11-20 and listing them in sidebar and body.
I need the body to be 1-10.
I read somewhere I need to make another loop?.?.
Forum: Plugins
In reply to: show posts 11-20The change I made was only in the sidebar.php file.
Forum: Plugins
In reply to: show posts 11-20I’ve always shown the most recent 10 posts in the body on my front page. Now I want to show posts 11-20 on the sidebar. The code I’m using is:
<ul>
<?php
$posts = get_posts('numberposts=10&offset=11');
foreach($posts as $post) :
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
It’s now showing the 11-20 most recent posts in the body and sidebar now. How do I get this to work?