Posts Tagged Wordpress

Disabling the Wordpress Flash Uploader

Sometimes it can be finnigy — the wordpress flash uploader. When it works, it works nicely, but when it doesn't work it can be frustrating to troubleshoot and fix. If you ever decide that you don't want it anymore, there is a very simple snippet that will make it look like wordpress never had a [...]

Tags: , , ,

Integrating Zenphoto and Wordpress

Update: I am now using google picasa with the kpicasa plugin. I've determined that this is the best method of putting a complete gallery onto a post or page. This completely eliminates zenphoto. If you are committed to using zenphoto, and you have your theme set up exactly the way you want it, then this [...]

Tags: , , , ,

Hardlink Wordpress Navigation

This cool little theme code snippet allows the wordpress navigation to link to a page outside of wordpress. It takes advantage of custom fields for pages. Just place this code at the top of your themes header.php file
<?php
/*
Copyright (c) 2009 < Nate Nuzum >
Use under terms of MIT license
*/
global $post;
$redirect = get_post_meta($post->ID, 'redirect', true);
if [...]

Tags: , , , , , , ,