Lester Chan’s WordPress Plugins June 2008 Update (Wave 1)

Here is the first wave of my June 2008 plugins update containing 11 plugins. The remaining 4 plugins (WP-Ban, WP-DBManager, WP-DownloadManager and WP-PostViews) shall be in wave 2. All of them should work only on WordPress 2.5. It is not tested for any version below that.

The most general noticeable change would be the path to the plugin is now fixed. Previously it was nested in another folder and I got several hate mails because of that. Since the path problem has been solved, the Automatic Plugin Upgrade should work in theory.

Be sure to read the readme.html and checkout the changelog for more information and most importantly NOTE THE TABS AT THE TOP

WP-EMail 2.30
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-PageNavi 2.30
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-PluginsUsed 1.30
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-Polls 2.30
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-PostRatings 1.30
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-Print 2.30
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-RelativeDate 1.30
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-ServerInfo 1.30
» Readme/Changelog
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-Sticky 1.30
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-Stats 2.30
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

WP-Useronline 2.30
» Readme/Changelog
» Demo
» Download Mirror #1
» Download Mirror #2
» Support Forum

You may also want to view Lester Chan’s WordPress Plugins June 2008 Update (Wave 2).

1 Star2 Stars3 Stars4 Stars5 Stars (102 votes, average: 3.96 out of 5)

Updated This Site WP-Polls To 2.11 RC1

I have updated this site WP-Polls to 2.11 RC1 to test out the multiple answers voting feature in WP-Polls 2.20. You can set the maximum number of answers that the user can vote, in this case, I set it to 14 as there are 14 answers.

Note the poll footer that says “Total Voters” and NOT “Total Votes”. The individual answer on the other hand is “Votes” and not “Voters” and the percentage is calculated based on the “Total Voters”.

Vote away on the right hand sidebar.

1 Star2 Stars3 Stars4 Stars5 Stars (107 votes, average: 3.95 out of 5)

WordPress 4.0 Released

WordPress 4.0 has been released and it is named “Benny” in honor of jazz clarinetist and bandleader Benny Goodman.

This release was led by Helen Hou-Sandí, with the help of many other fine individuals. There are 275 contributors with props in this release which is a new high.

  • Manage your media with style
    Explore your uploads in a beautiful, endless grid. A new details preview makes viewing and editing any amount of media in sequence a snap.
  • Working with embeds has never been easier
    Paste in a YouTube URL on a new line, and watch it magically become an embedded video. Now try it with a tweet. Oh yeah – embedding has become a visual experience. The editor shows a true preview of your embedded content, saving you time and giving you confidence. You can now embed videos from CollegeHumor, playlists from YouTube, and talks from TED.
  • Focus on your content
    Writing and editing is smoother and more immersive with an editor that expands to fit your content as you write, and keeps the formatting tools available at all times.
  • Finding the right plugin
    There are more than 30,000 free and open source plugins in the WordPress plugin directory. WordPress 4.0 makes it easier to find the right one for your needs, with new metrics, improved search, and a more visual browsing experience.

1 Star2 Stars3 Stars4 Stars5 Stars (74 votes, average: 3.95 out of 5)

WordPress 3.0.1

WordPress 3.0.1 has been released.

After nearly 11 million downloads of WordPress 3.0 in just 42 days, we’re releasing WordPress 3.0.1.

This maintenance release addresses about 50 minor issues. The testing many of you contributed prior to the release of 3.0 helped make it one of the best and most stable releases we’ve had.

Changelog: WordPress 3.0.1
Download: WordPress 3.0.1
Download: Modified files since WordPress 3.0.0

1 Star2 Stars3 Stars4 Stars5 Stars (1,082 votes, average: 3.94 out of 5)

New WP_Widget Class In WordPress 2.8

In WordPress 2.8, there is a new WP_Widget class, which personally I like it very much as now the multi-instances of widgets is handled by WordPress, all you need to do is just to extends the WP_Widget class and overwrite 3 of the functions namely widgets(), update() and form();

Below is a sample code taken from my WP-Polls that displays Polls Widget. It is tested and it works perfectly. Hope it is useful for plugin authors.

 __('Put a poll that you have added in WP-Polls on your sidebar', 'wp-polls'));
		$this->WP_Widget('polls', __('Polls'), $widget_ops);
	}

	// Display Widget
	function widget($args, $instance) {
		extract($args);
		$title = esc_attr($instance['title']);
		$poll_id = intval($instance['poll_id']);
		$display_pollarchive = intval($instance['display_pollarchive']);
		echo $before_widget.$before_title.$title.$after_title;
		get_poll($poll_id);
		if($display_pollarchive) {
			display_polls_archive_link();
		}
		echo $after_widget;
	}

	// When Widget Control Form Is Posted
	function update($new_instance, $old_instance) {
		if (!isset($new_instance['submit'])) {
			return false;
		}
		$instance = $old_instance;
		$instance['title'] = strip_tags($new_instance['title']);
		$instance['poll_id'] = intval($new_instance['poll_id']);
		$instance['display_pollarchive'] = intval($new_instance['display_pollarchive']);
		return $instance;
	}

	// DIsplay Widget Control Form
	function form($instance) {
		global $wpdb;
		$instance = wp_parse_args((array) $instance, array('title' => __('Polls', 'wp-polls'), 'poll_id' => 0, 'display_pollarchive' => 1));
		$title = esc_attr($instance['title']);
		$poll_id = intval($instance['poll_id']);
		$display_pollarchive = intval($instance['display_pollarchive']);
?>


			
		


			
		


			
		


1 Star2 Stars3 Stars4 Stars5 Stars (176 votes, average: 3.94 out of 5)