Tag Archives: tagging

Python Script to Import Simple Tagging tags to Wordpress 2.3

Wordpress 2.3 database now supports tags. For some reason, the Wordpress importer for Simple Tagging doesn’t work for me, it imports only halfway.
I wrote this python script stp-import.py to import the tags to Wordpress 2.3 database.
[~]$ python stp-import.py
The script will ask for the Wordpress database name, the database user and password, and the Wordpress database [...]

Adding Html Title for Tag Pages

This is done by modifying the function wp_title in general-template.php (add the below code).

if ( empty($title) ) {
$tag = get_query_var(’tag’); // assume
if ( !empty($tag) )
$title = “Browse by “.$tag;
}

Related Tags Navigation added

I am using plugin Simple Tagging. I made a slight modification to STP_RelatedTags and outputRelatedTags functions and uses STP_RelatedTags to show the related tags to the current tag being viewed. Basically, if a post is tagged with A and B, then tag A and B are related.
I also use the below to generate the browse [...]

Application menu and tagging

What is this? It is like the Nokia application menu, except that it is built within the program itself. The menus in the program is equivalent to the tags that you have tagged to an application.
Initially, none of the application is tagged, when you navigate to the Apps folder, you should see a list of [...]