WordPress 3.0.3

WordPress 3.0.3 has been released and it is yet another security update.

This release fixes issues in the remote publishing interface, which under certain circumstances allowed Author- and Contributor-level users to improperly edit, publish, or delete posts.

These issues only affect sites that have remote publishing enabled.

Remote publishing is disabled by default, but you may have enabled it to use a remote publishing client such as one of the WordPress mobile apps. You can check these settings on the “Settings > Writing” screen.

Changelog: WordPress 3.0.3
Download: WordPress 3.0.3
Download: Modified files since WordPress 3.0.2

1 Star2 Stars3 Stars4 Stars5 Stars (122 votes, average: 3.91 out of 5)

WP-PostRatings 1.05 Beta

This site is now running WP-PostRatings 1.05 Beta, the changelog is as follows:

» NEW: Added The Ability For Each Rating Star To Have Its Own Text
» NEW: Highest Rated Post Is Now In The Templates For Easy Modification
» » NEW: Usage Instructions Is Also Included Within The Plugin Itself
» NEW: Able To Delete Ratings Logs And Data By Post IDs
» NEW: Able To Uninstall WP-PostRatings
» NEW: Localization WP-PostRatings
» FIXED: snippet_text() Function Missing
» FIXED: AJAX Not Working On Servers Running On PHP CGI
FIXED: Highest Rated Post Is Now Based On The Ratings Followed By The Number Of Votes
» FIXED: Added Some Default Styles To postratings-css.css To Ensure That WP-PostRatings Does Not Break

I intend to release WP-PostRatings 1.05, WP-Polls 2.13, WP-Stats 2.06, WP-UserOnline 2.06, WP-Ban 1.00 on 2nd January 2006 if everything goes smoothly.

Sorry guys but WP-Downloads is still in the works, I need to think and plan on how to integrate it.

UPDATE: I have re-uploaded the file due to wrong file name (should be 105 and not 103) and fixes an important bug.

UPDATE: Download WP-PostRatings 1.10

1 Star2 Stars3 Stars4 Stars5 Stars (108 votes, average: 3.91 out of 5)

Plugins Repo Moved To Github

I have moved the remaining WordPress plugins repository to Github and thanks to scribu’s script, I can deploy from Github back to WordPress Plugins SVN Repo.

Also thanks to scribu for taking the lead with WP-PageNavi and WP-UserOnline previously =)

Feel free to submit pull requests or fork the repo or follow me on GitHub.

Here are all the links.

1 Star2 Stars3 Stars4 Stars5 Stars (105 votes, average: 3.91 out of 5)

Dashboard Widget (Without Controls) Sample Plugin

WordPress 2.5 has the ability to customize your administration dashboard with the help of widgets.

After poking around WordPress 2.5 codes, I have come out with this Dashboard Widget Sample Plugin. BUT do note that this plugin does not include Dashboard Widget Controls. If I have the time, I will add that in or perhaps I will create another plugin called “Dashboard Widget (With Controls) Sample Plugin”.

To get a clearer picture of what this sample plugin does, here is a screenshot of the Dashboard Widget (Without Controls) Sample in action.

Here comes the code:

 'Full URL For "See All" link', // Example: 'index.php?page=wp-useronline/wp-useronline.php'
		'feed_link' => 'Full URL For "RSS" link', // Example: 'index.php?page=wp-useronline/wp-useronline-rss.php'
		'width' => 'half', // OR 'fourth', 'third', 'half', 'full' (Default: 'half')
		'height' => 'single', // OR 'single', 'double' (Default: 'single')
		)
	);
}

### Function: Add Dashboard Widget
add_filter('wp_dashboard_widgets', 'PLUGINNAME_add_dashboard_widget');
function PLUGINNAME_add_dashboard_widget($widgets) {
	global $wp_registered_widgets;
	if (!isset($wp_registered_widgets['dashboard_PLUGINNAME'])) {
		return $widgets;
	}
	array_splice($widgets, sizeof($widgets)-1, 0, 'dashboard_PLUGINNAME');
	return $widgets;
}

### Function: Print Dashboard Widget
function dashboard_PLUGINNAME($sidebar_args) {
	global $wpdb;
	extract($sidebar_args, EXTR_SKIP);
	echo $before_widget;
	echo $before_title;
	echo $widget_name;
	echo $after_title;
	echo 'YOUR CONTENT GOES IN HERE';
	echo $after_widget;
}
?>

Hope this helps some of you guys. =)

1 Star2 Stars3 Stars4 Stars5 Stars (33 votes, average: 3.91 out of 5)