Timberline Employee Blog

From our living-room to yours

Entries Comments



Windows Live Writer and WordPress 2.3 Tags

31 October, 2007 (11:45) | WordPress | By: Ben

If you are going to use use Windows Live Writer and WordPress 2.3 it is suggested you install the wlw manifest helper as found at this blog. You may have to have Windows Live Writer redetect your blog.  Once done the keywords field should be activated for you to use as your WordPress Tags.

Update:

WordPress 2.3.1 has this built in now.

Windows Live Writer Beta 3

26 September, 2007 (11:20) | WordPress | By: Ben

Map image

I’m testing out Windows Live Writer. I think it is a great tool and here are a few reasons why:

works with WordPress
allows me edit multiple blogs without logging into each blog
allows easy insertion of maps, pictures, and video (drag and drop anybody?)

However, I did not see any tag suggestion tool that works on WordPress 2.3.

How to use WordPress 2.3 built-in tags

17 September, 2007 (12:29) | WordPress | By: Ben

WordPress 2.3 now has built in tags. Tags are similar to categories.You’ll need to have these installed and running.
WordPress 2.3
Tag Suggest Thing

Tag Suggest Thing by the author of Ultimate Tag Warrior will query Yahoo for tag suggestions. This is easier than trying to come up with tags yourself and type them in.

At http://richgilchrest.com/how-to-add-wordpress-23-tags-to-your-current-theme/ we learn how to add a tag cloud to your theme. There are two suggested places this would be good at. As a widget using Execphp, or directly in your themes code.

If you are using execphp you would add in a simple line of code that looks like:

<?php wp_tag_cloud(’smallest=8&largest=36&’); ?>

For more options see the WordPress document. (smallest, largest, unit, number, format, orderby, order, exclude, include)

The other way to see a tag cloud is to edit your theme directly. You can add it to each post, or add it to a side column. To add it to each post you will edit your themes index.php and single.php. And add code like the code above.

If want a tag cloud in a side bar you would add this code to your themes sidebar.php.

<?php if ( function_exists(’wp_tag_cloud’) ) : ?>
<li>
<h2>Popular Tags</h2>
<ul>
<?php wp_tag_cloud(’smallest=8&largest=22′); ?>
</ul>
</li>
<?php endif; ?>

If your theme is widget ready, consider using the tag cloud widget instead.

 

My Necessary Plugins for WordPress 2.2.1

27 June, 2007 (09:32) | WordPress | By: Ben

My list of the most necessary plug-ins for WordPress 2.2.1 include:

PlugInstaller 0.1.95: Author’s Site, Repository
This is one of those features I missed from the other CMS/Blogging systems. It allows plugin installation without using a ftp client. The author now has cleared up the problems I found in an earlier version of this plugin.

WP-DB-Backup 2.1.2: Author’s Site, Repository
Ever need to refer to a backup? This tool allows you to backup the WordPress database, package it up neatly and email it to you or let you download it. It can even be setup to run on automatically.

Front Page Excluded Categories 1.0.3: Author’s Site, Repository
This plug-in make it possible to put only a certain category of posts on the front page. When setting up select all categories then remove the ones you want to show on the front page.

Google (XML) Sitemaps 3.0b7: Author’s Site, Repository
This is one of those necessary evils. You have a page. You have to tell somebody it is there.

Google Analyticator 1.5.3: Author’s Site, Repository
This adds the Google tracking code to your page. You must setup a tracking account for this to be of any use.

All in One SEO Pack 0.6.2.6: Author’s Site, Repository
Just telling people that you exist is not enough. You also have to tell them a bit about yourself. This plug-in helps you do that.

Social Bookmarking RELOADED 2.2: Author’s Site, Repository
This is based off of Social Bookmarks. It is designed to easily submit a page to one of the major bookmark / blog bookmark sites. This one auto centered and fit better in my themes than some other social bookmarking plugins I tried.

WP-o-Matic 0.2-beta: Author’s Site
Almost ready for prime time. It took a bit to be able to install this. Once installed it creates posts from rss feeds. See what I have already written about this plug-in.

cforms II 5.0: Author’s Site, Repository
Allows creation of multiple mail-to forms.

There are other great plug-ins available. These are the plug-ins that I would argue on having in the WordPress download.

Please visit our sponsor.

Automatically Add RSS Aggregated Feeds as Posts to Wordpress 2.2

20 June, 2007 (13:31) | WordPress | By: Ben

Here is a how to showing how to add RSS Feed Aggregation to Wordpress 2.2.

Required: Wp-o-matic, Wordpress-2.2

First, let us not find out what kind of fun it is to replace work without a backup.

About the wp-o-matic 0.2 beta archive. It was made on a mac and I had to use a program other than the built in Windows XP Zip Folders to extract the archive entirely. WinRar extracted without difficulty but I still had to erase the extra .DS_Store files and __MACOSX directory.

Wp-o-matic version 0.2 beta had a problem in the mysql field description. This was my first stumbling block. Fix this first even if your tables use the default wp_ prefix.

On line 334 of wpomatic.php version 0.2 beta, replace the hardcoded “wp_rssfeeds” with {$this->dbfeeds} .

Now locate the directory your theme is stored in and open index.php. Somewhere in index.php you should find <?php the permalink() ?> next to ‘read more’, depending on the theme you use. Change this to say:

<?php $a_wprss_link=get_post_custom_values(”wprss_link”); if(!empty($a_wprss_link)){echo $a_wprss_link[0];}else{the_permalink();} ?>

This uses the get_post_custom_values() to pull the link data from the post created by Wp-o-matic. If there is nothing in this field then the regular permalink is used.

Good. If you haven’t already uploaded the wpomatic folder to your plugin directory do that now.

Turn on the plugin. If your database tables do not start with wp_ and you get an error here reguarding the database, read the part above that you skipped over a little to fast. Other errors are likely directory permission settings. Try chmodding to 777.

Then go to Options/wp-o-matic and enter in a feed to test. If all goes well you have a working RSS Aggregation system.

Now the interface does not let you enter complicated urls like http://news.search.yahoo.com/news/rss;_ylt=A9j8eu.hUnlGwfcAtRfQtDMD; ylu=X3oDMTA3MTBsZGZsBHNlYwNhZG0-?ei=UTF-8&p=chrysler &c=&eo=UTF-8, so if you have phpMyAdmin installed use it to load the url. Wp-o-matic will then be able to pull feeds where it wasn’t before.

If you want would like to add a target=_blank for outside links only then enter the following inside the <a href> defination next to the code we entered above. Note the code we entered above will be sourounded by quotes so you need to paste this outside of those quotes so this doesn’t become part of the link.

<?php $a_wprss_link=get_post_custom_values(”wprss_link”); if(!empty($a_wprss_link)){echo ‘target=_blank’;} ?>

The idea here is to always open rss links in a seperate window and open internal links in the same window.

Let me know if this helps.