Tag Archives: wordpress

Creating WordPress Snow Effects With jQuery Snowfall

Merry Christmas! This tutorial will show how to create snow effect using awesome jQuery plugin Snowfall. The main idea is using your page body to handle the snow. Download the jQuery plugin Snowfall, create a directory ‘snowfall’ in your theme …Read more.

Get Custom Taxonomy Terms Using WordPress Archive Template

This tutorial will get the custom taxonomy ID by using get_query_var and get_term_by in archive.php template. The example url is http://http://zourbuth.com/?manufacturers=motorola. Put this code in your theme archive.php: $taxonomy = ‘manufacturers’; $cat_name = get_query_var( $taxonomy ); $term = get_term_by(‘name’, $cat_name, …Read more.

Creating Additional WordPress Plugin Links Row Meta

By default, WordPress only display the author and plugin URI links. Since the version 2.8, they applied filter plugin_row_meta within the plugin administration section. With this filter, you can create many links for your plugin or another plain text. You …Read more.

Redesigned Linking Workflow WordPress 3.1

The new 3.1 release is pretty cool, it has a new admin bar feature so you’re never more than one-click from your admin and adding links in the WYSIWYG is now like 42x faster and includes a lookup to make …Read more.