WordPress Expert » SEO Ultimate http://johnlamansky.com/wordpress Wed, 01 Jun 2011 18:58:49 +0000 en hourly 1 http://wordpress.org/?v=3.3 Tip for Plugin Developers: Inline Changelogs http://johnlamansky.com/wordpress/inline-changelogs/?utm_source=rss&utm_medium=rss&utm_campaign=inline-changelogs http://johnlamansky.com/wordpress/inline-changelogs/#comments Fri, 03 Jul 2009 16:51:12 +0000 John Lamansky http://wordpress.jdwebdev.com/?p=106 Recently, the Dev4Press and Weblog Tools Collection blogs made posts about integrating plugin changelogs into the Plugins dashboard. This functionality was something I was already doing in the SEO Ultimate plugin, so I thought I’d share my technique for doing this. (My method is different because it’s simpler and it integrates directly into WordPress’s update message.)

Here’s what an inline changelog looks like when implemented:

Example of inline changelog from SEO Ultimate

As you can see, a small notice like this helps users know at-a-glance what’s new in your plugin update.

Here’s the code you can incorporate into your plugin:

<?php
function my_plugin_update_info() {
	if ( $info = wp_remote_fopen("http://www.example.com/my-plugin-updates.txt") )
		echo '<br />' . strip_tags( $info, "<br><a><b><i><span>" );
}
add_action('in_plugin_update_message-'.plugin_basename(__FILE__), 'my_plugin_update_info');
?>

Of course, to keep plugin users happy, be sure that your inline changelogs are informative and unobtrusive. Happy coding!

(Plugin users, if you’d like to see this feature implemented in your favorite plugins, you could try sending the plugin author a link to this post! You could also check out the new Changelogger plugin.)

]]>
http://johnlamansky.com/wordpress/inline-changelogs/feed/ 5
Announcing the “SEO Ultimate” Plugin http://johnlamansky.com/wordpress/seo-ultimate-0-6/?utm_source=rss&utm_medium=rss&utm_campaign=seo-ultimate-0-6 http://johnlamansky.com/wordpress/seo-ultimate-0-6/#comments Thu, 02 Jul 2009 23:10:08 +0000 John Lamansky http://wordpress.jdwebdev.com/?p=109 Normally when I set up plugin-level SEO on a WordPress blog, I’ll need 5-8 plugins to provide all the desired SEO functionality. Wouldn’t it be cool if there was one plugin that incorporated all that functionality and more into one easy-to-use suite?

That’s the goal of SEO Ultimate, which is a free plugin I’m developing on behalf of SEO Design Solutions.

Right now the plugin is in its early stages (currently at version 0.6). There are many more features yet to come; as more functionality is added, I expect SEO Ultimate to become the all-in-one WordPress SEO solution of choice for more people as time goes on.

Features

Current functionality includes the standard All in One SEO Pack features:

  • Title rewriting
  • Noindex checkboxes
  • Meta editing
  • Canonical tags
  • Post meta box

SEO Ultimate also has these additional capabilities:

  • 404 monitoring
  • Linkbox insertion
  • Settings import/export functions

Upcoming features include robots.txt editing, 301 logging, XHTML validation status monitoring, and much more. (If you install the plugin now, you can get these features delivered to you on a regular basis via WordPress’s semi-automatic plugin updater!)

I’ve also incorporated these extra features into SEO Ultimate:

Auto-Installer

Also, be sure to check out this cool auto-installer system I invented. Just type in your blog’s URL, click “Launch Installer,” then click “Install Now,” and voila, SEO Ultimate will be installed on your blog! You can then enable it by clicking the Activate link.

Try it out:

You can also download the zip file. SEO Ultimate requires WordPress 2.7 or above.

Let me know what you think!

]]>
http://johnlamansky.com/wordpress/seo-ultimate-0-6/feed/ 21