Posts Tagged ‘plugin’

How to integrate wordpress with twitter?

How to integrate wordpress with twitter?

February 12, 2010 |  by Mukesh Chapagain  |  No Comments

By integrating, I mean to say about posting your blog topics and links to twitter status. In other words, it’s about publishing your wordpress articles as tweets in twitter.

I don’t mean the entire article content coz twitter only allows 140 chars max :) I just mean publishing your article title and link to twitter.

Here is an awesome wordpress plugin which lets you post your wordpress article to your twitter status automatically. It’s called WP to Twitter.

It has very good options to be selected. You can tweet whenever your post is published. Or, even when your post is being edited. You can also tweet whenever your wp pages are published or edited.

The prominent feature I like about this plugin is that it lets you post your wordpress article’s content as tweet by setting character limit. Moreover, it publishes your wp article tags as hashtags in twitter.

The URL Shortener is always there. You can do with Cli.gs, Bit.ly or use wordpress as url shortener.

This plugin is very beneficial and is a must if you are a twitter user or a twitter fan lik e me :)

Keep blogging and keep tweeting…

Cheers,

jQuery: Create Stunning Slideshow with Cycle Plugin

jQuery: Create Stunning Slideshow with Cycle Plugin

January 31, 2010 |  by Mukesh Chapagain  |  No Comments

You can easily create stunning and very effective image slideshow with the jQuery Cycle Plugin. You don’t need to write long and difficult programming code. Just a few lines of code will be enough.

View Demo | Download Code

You need to have jQuery library and the jQuery Cycle plugin.

Download jQuery Library | Download jQuery Cycle Plugin

The jQuery Cycle Plugin is a slideshow plugin that supports many different types of transition effects. It supports pause-on-hover, auto-stop, auto-fit, before/after callbacks, click triggers and much more.

The Cycle Plugin provides many options for customizing your slideshow. The default option values can be overridden by passing an option object to the cycle method.

Here is the list of options

There are many effects that can be used with jQuery Cycle Plugin. You can find them all here. I have used some effects and created a demo.

View Demo | Download Code

Expandable Collapsible Sitemap with jQuery Treeview plugin

Expandable Collapsible Sitemap with jQuery Treeview plugin

January 31, 2010 |  by Mukesh Chapagain  |  1 Comment

“Lightweight and flexible transformation of an unordered list into an expandable and collapsable tree.” This is what the jQuery Treeview plugin home defines. You can create different types of tree. See demos here. Here, I will be showing you the Sitemap demo that I created using the Treeview plugin.

View Demo | Download Code

<li class="expandable">Parent
	<ul>
		<li class="expandable">Child-A
			<ul>
				<li>Child-A-1</li>
				<li>Child-A-2</li>
			</ul>
		</li>
		<li class="expandable">Child-B
			<ul>
				<li class="expandable">Child-B-1</li>
					</ul><ul>
						<li>Child-B-1-1</li>
						<li>Child-B-1-2</li>
					</ul>
				</li>
			</ul>
		</li>
		<li>Child-C</li>

View Demo | Download Code