abeolson
Forum Replies Created
-
Forum: Themes and Templates
In reply to: photo link based on page slugeventually figured it out:
src=”<?php bloginfo(‘template_url’); ?>/images/pagephotos/<?php single_post_title(); ?>.jpg”
Had to use the post title instead of slug, but it works.
Forum: Fixing WordPress
In reply to: Archives Broken: shows all blog postsThanks to Yuchi’s post on another thread, I was able to find a good way to do this.
<?php if (is_home()) { query_posts($query_string . "&cat=-19"); } ?>is the code I use now, and the archives and search features work.
Forum: Plugins
In reply to: wp-o-matic stopped fetching feedsTurns out the WP-o-Matic had forgotten the source feed; so all I needed to do was put in the correct feed again…
Forum: Plugins
In reply to: wp-o-matic stopped fetching feedsNevermind. Got it done.
Forum: Developing with WordPress
In reply to: This is the blog that RSS built..possible?WP-O-Matic does the trick. You can even make it so that each author/RSS stream has a unique cateogry and such.
I used it to import my Tumblr blog posts into my WordPress powered site at abeolson.com.
Forum: Fixing WordPress
In reply to: 2 blogs from one WordPress InstallationThanks Moshu. I was able to do that, thanks in large part to the info you’ve contributed to the web.
My final solution is explained in a blog post I wrote, and the result can be seen on that site as well.
Forum: Installing WordPress
In reply to: Blog (and theme) don’t appear. File Permissions problemThanks guys. I did a fresh ftp of wordpress, it fixed it. And I decided to not worry about the plugin.
Forum: Installing WordPress
In reply to: Working off an ip address until going liveThey are the http://www.websiteName.com. Is a simple change to http://##.##.##.###/~username/websiteName/ all I need to do?