Posted on September 20th, 2007 by Oleg K
Tags: blogging keywords Scripts tag tag cloud utw wordpress Some people have asked me about the tag cloud I have in the bottom left of my blog. It is a UTW tag keyword cloud widget. I did not create this but have made some small edits to make it run better and prettier.
<?php
/*
Plugin Name: UTW Tag Cloud widget
Description: Creates a tag cloud as a widget
Author: Jay
Version: 1.0
Author URI: http://you.gotfoo.org
*/
//Minor edits by Oleg Korneitchouk - http://www.wmtoolbox.com
function widget_utw_tag_cloud_init
() {
// Check for the required API functions
if ( !
function_exists(‘register_sidebar_widget’) || !
function_exists(‘register_widget_control’) )
return;
function widget_utw_tag_cloud
() {
?>
<?php echo $before_widget;
?>
<li id=
“text-1″ class=
“widget widget_text”>
<h2
class=
“widgettitle”>Tags</h2><center>
<span style=
“text-decoration:none;”>
<?php
if (function_exists(‘UTW_ShowWeightedTagSetAlphabetical’)) {
UTW_ShowWeightedTagSetAlphabetical
(“sizedtagcloud”);
}
?></span></center></li>
<?php echo $after_widget;
?>
<?php
}
// Tell Dynamic Sidebar about our new widget and its control
register_sidebar_widget
(array(‘UTW Tag Cloud’,
‘widgets’),
‘widget_utw_tag_cloud’);
//register_widget_control(array(’UTW Tag Cloud’, ‘widgets’), ‘widget_utw_tag_control’);
}
// Delay plugin execution to ensure Dynamic Sidebar has a chance to load first
add_action
(‘widgets_init’,
‘widget_utw_tag_cloud_init’);
?>
Enjoy
Filed under: Blogging, Scripts | 3 Comments »
Posted on September 16th, 2007 by Oleg K
Tags: blogging blogrush Marketing seth godin video viral marketing Haven’t had much time for posts lately seeing as school has once again started but here is are two things that I thought deserved to be recognized.
1) BlogRush just came out. It is a program that is very similar to MyBlogLog and Bumpzee except that instead of your face appearing on other blogs, its your blog posts. This is going to be a very viral program and will be placed on almost all webmaster blogs within the week. They have a sweet video on their site about how the program works and I recommend you check it out.
2) Check out the video below with Seth Godin talking about marketing
Filed under: Blogging, Marketing | Add a Comment »
Posted on September 4th, 2007 by Oleg K
Tags: blogging Code Snippets social bookmarks When I go to blogs like: this or this which generally have short posts/summaries on the home page repeating bookmark buttons can get quite annoying and repetitive.
If you decide to attach something to your posts and want it to only appear on the actual post page, through this code around it…
if ( if ( is_single() || is_page() ){
//INSERT CODE HERE
}
This will only show the code you input on individual blog posts and pages and remove all the clutter from the blog root.
Filed under: Blogging, Code Snippets | Add a Comment »