<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" version="2.0">

<channel>
	<title>Cleverness - WordPress Resources</title>
	
	<link>http://cleverness.org</link>
	<description>WordPress Plugins, Themes, News, and Links</description>
	<lastBuildDate>Tue, 03 Jan 2012 01:11:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/clevernessorg" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="clevernessorg" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>WordPress Gallery with Categories</title>
		<link>http://cleverness.org/2012/01/02/wordpress-gallery-with-categories/</link>
		<comments>http://cleverness.org/2012/01/02/wordpress-gallery-with-categories/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 01:05:24 +0000</pubDate>
		<dc:creator>Cindy</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[gallery]]></category>

		<guid isPermaLink="false">http://cleverness.org/?p=521</guid>
		<description><![CDATA[<p>Recently I needed to recreate a specific gallery format in WordPress.<br />
There are probably better ways to go about it, such as custom post types, but I needed something quick and easy.</p>
<p>The main gallery page needed to have a list of &#8220;categories&#8221; that were represented by images.<br />
I used a WordPress Page that consisted of:</p>
<p>Each &#8220;category&#8221; was an image that linked to a WordPress Page.</p>
<p>On the category pages, for each gallery item, there needed to be a caption on top of the image, the image with no link, and a description under the image.<br />
For each of &#8230; <a href="http://cleverness.org/2012/01/02/wordpress-gallery-with-categories/" class="read_more">continue reading</a></p>]]></description>
			<content:encoded><![CDATA[<p>Recently I needed to recreate a specific gallery format in WordPress.<br />
There are probably better ways to go about it, such as custom post types, but I needed something quick and easy.</p>
<p>The main gallery page needed to have a list of &#8220;categories&#8221; that were represented by images.<br />
I used a WordPress Page that consisted of:</p>
<pre class="brush: php; title: ; notranslate">[gallery size=&quot;full&quot; link=&quot;custom_url&quot;]</pre>
<p>Each &#8220;category&#8221; was an image that linked to a WordPress Page.</p>
<p>On the category pages, for each gallery item, there needed to be a caption on top of the image, the image with no link, and a description under the image.<br />
For each of these WordPress pages I used:</p>
<pre class="brush: php; title: ; notranslate">[gallery size=&quot;full&quot; link=&quot;none&quot;]</pre>
<p>To create this, I merged the code from these two sources, moved the image caption tag to a different location, and added the image description in functions.php.</p>
<p><em>Sources:</em></p>
<ul>
<li><a href="http://blog.mattsatorius.com/technology/web-design/wordpress-gallery-shortcode-with-no-image-link/">WordPress Gallery Shortcode with No Image Link</a></li>
<li><a href="http://geekeemedia.com/wordpress/add-a-custom-url-to-your-wordpress-gallery-images/">Add a Custom URL to your WordPress Gallery Image</a></li>
</ul>
<p>The code below goes in functions.php in your theme directory.</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
/* -------------------------------
CUSTOM LINK PER GALLERY IMAGE
------------------------------- */
               function rt_image_attachment_fields_to_edit( $form_fields, $post ) {
                       $form_fields[&quot;rt-image-link&quot;] = array( &quot;label&quot; =&gt; __( &quot;Custom Link&quot; ),
                                                              &quot;input&quot; =&gt; &quot;text&quot;, // default
                                                              &quot;value&quot; =&gt; get_post_meta($post-&gt;ID, &quot;_rt-image-link&quot;, true ), //&quot;helps&quot; =&gt; __(&quot;To be used with special slider added via [rt_carousel] shortcode.&quot;),
                       );
                       return $form_fields;
               }

               add_filter( &quot;attachment_fields_to_edit&quot;, &quot;rt_image_attachment_fields_to_edit&quot;, null, 2 );

               function rt_image_attachment_fields_to_save( $post, $attachment ) {
                       // $attachment part of the form $_POST ($_POST[attachments][postID])
                       // $post['post_type'] == 'attachment'
                       if ( isset( $attachment['rt-image-link'] ) ) {
                               // update_post_meta(postID, meta_key, meta_value);
                               update_post_meta( $post['ID'], '_rt-image-link', $attachment['rt-image-link'] );
                       }
                       return $post;
               }

               add_filter( &quot;attachment_fields_to_save&quot;, &quot;rt_image_attachment_fields_to_save&quot;, null, 2 );

/* -------------------------------
MODIFIED CORE FUNCTION
------------------------------- */
add_shortcode( 'gallery', 'geekee_gallery_shortcode' );

               /**
                * The Gallery shortcode.
                *
                * This implements the functionality of the Gallery Shortcode for displaying
                * WordPress images on a post.
                *
                * @since 2.5.0
                *
                * @param array $attr Attributes attributed to the shortcode.
                * @return string HTML content to display gallery.
                */
function geekee_gallery_shortcode( $attr ) {
       global $post, $wp_locale;

       static $instance = 0;
       $instance++;

       // Allow plugins/themes to override the default gallery template.
       $output = apply_filters( 'post_gallery', '', $attr );
       if ( $output != '' ) return $output;

       // We're trusting author input, so let's at least make sure it looks like a valid orderby statement
       if ( isset( $attr['orderby'] ) ) {
               $attr['orderby'] = sanitize_sql_orderby( $attr['orderby'] );
               if ( !$attr['orderby'] ) unset( $attr['orderby'] );
       }

       extract( shortcode_atts( array( 'order'      =&gt; 'ASC',
                                       'orderby'    =&gt; 'menu_order ID',
                                       'id'         =&gt; $post-&gt;ID,
                                       'itemtag'    =&gt; 'dl',
                                       'icontag'    =&gt; 'dt',
                                       'captiontag' =&gt; 'dd',
                                       'columns'    =&gt; 3,
                                       'size'       =&gt; 'thumbnail',
                                       'include'    =&gt; '',
                                       'exclude'    =&gt; '' ), $attr ) );

       $id = intval( $id );
       if ( 'RAND' == $order ) $orderby = 'none';

       if ( !empty( $include ) ) {
               $include      = preg_replace( '/[^0-9,]+/', '', $include );
               $_attachments = get_posts( array( 'include'        =&gt; $include,
                                                 'post_status'    =&gt; 'inherit',
                                                 'post_type'      =&gt; 'attachment',
                                                 'post_mime_type' =&gt; 'image',
                                                 'order'          =&gt; $order,
                                                 'orderby'        =&gt; $orderby ) );

               $attachments = array();
               foreach ( $_attachments as $key =&gt; $val ) {
                       $attachments[$val-&gt;ID] = $_attachments[$key];
               }
       } elseif ( !empty( $exclude ) ) {
               $exclude     = preg_replace( '/[^0-9,]+/', '', $exclude );
               $attachments = get_children( array( 'post_parent'    =&gt; $id,
                                                   'exclude'        =&gt; $exclude,
                                                   'post_status'    =&gt; 'inherit',
                                                   'post_type'      =&gt; 'attachment',
                                                   'post_mime_type' =&gt; 'image',
                                                   'order'          =&gt; $order,
                                                   'orderby'        =&gt; $orderby ) );
       } else {
               $attachments = get_children( array( 'post_parent'    =&gt; $id,
                                                   'post_status'    =&gt; 'inherit',
                                                   'post_type'      =&gt; 'attachment',
                                                   'post_mime_type' =&gt; 'image',
                                                   'order'          =&gt; $order,
                                                   'orderby'        =&gt; $orderby ) );
       }

       if ( empty( $attachments ) ) return '';

       if ( is_feed() ) {
               $output = &quot;\n&quot;;
               foreach ( $attachments as $att_id =&gt; $attachment ) $output .= wp_get_attachment_link( $att_id, $size, true ) . &quot;\n&quot;;
               return $output;
       }

       $itemtag    = tag_escape( $itemtag );
       $captiontag = tag_escape( $captiontag );
       $columns    = intval( $columns );
       $itemwidth  = $columns &gt; 0 ? floor( 100 / $columns ) : 100;
       $float      = is_rtl() ? 'right' : 'left';

       $selector = &quot;gallery-{$instance}&quot;;

       $gallery_style = $gallery_div = '';
       if ( apply_filters( 'use_default_gallery_style', true ) ) $gallery_style = &quot;
               &lt;style type='text/css'&gt;
                       #{$selector} {
                               margin: auto;
                       }
                       #{$selector} .gallery-item {
                               float: {$float};
                               margin-top: 10px;
                               text-align: center;
                               width: {$itemwidth}%;
                       }
                       #{$selector} img {
                               border: 2px solid #cfcfcf;
                       }
                       #{$selector} .gallery-caption {
                               margin-left: 0;
                       }
               &lt;/style&gt;
               &lt;!-- see gallery_shortcode() in wp-includes/media.php --&gt;&quot;;
       $size_class  = sanitize_html_class( $size );
       $gallery_div = &quot;&lt;div id='$selector' class='gallery galleryid-{$id} gallery-columns-{$columns} gallery-size-{$size_class}'&gt;&quot;;
       $output      = apply_filters( 'gallery_style', $gallery_style . &quot;\n\t\t&quot; . $gallery_div );

       $i = 0;
       foreach ( $attachments as $id =&gt; $attachment ) {
               if ( isset( $attr['link'] ) &amp;&amp; 'file' == $attr['link'] ) {
                       $link = wp_get_attachment_link( $id, $size, false, false );
               } elseif ( isset( $attr['link'] ) &amp;&amp; 'none' == $attr['link'] ) {
                       $link = wp_get_attachment_image( $id, $size, false );
               } else {
                       $link = wp_get_attachment_link( $id, $size, true, false );
               }

               /* -------------------------------
                 MODIFICATION ################
                 ------------------------------- */
               $image           = wp_get_attachment_image( $id, $size, false );
               $attachment_meta = get_post_meta( $id, '_rt-image-link', true );
               if ( $attachment_meta ) {
                       if ( $attr['link'] == 'custom_url' ) {
                               $link = $attachment_meta;
                       }
               }

               $output .= &quot;&lt;{$itemtag} class='gallery-item'&gt;&quot;;

               if ( $captiontag &amp;&amp; trim( $attachment-&gt;post_excerpt ) ) {
                       $output .= &quot;&lt;{$captiontag} class='gallery-caption'&gt;&quot; . wptexturize( $attachment-&gt;post_excerpt ) . &quot;&lt;/{$captiontag}&gt;&quot;;
               }
               $output .= &quot;&lt;{$icontag} class='gallery-icon'&gt;&quot;;

               /* -------------------------------
                 MODIFICATION ################
                 ------------------------------- */
               if ( $attachment_meta ) {
                       $output .= &quot;&lt;a href='$link'&gt;$image&lt;/a&gt;&quot;;
               } else {
                       $output .= $link;
               }

               if ( trim( $attachment-&gt;post_content ) ) {
                       $output .= '&lt;br /&gt;'.wptexturize( $attachment-&gt;post_content );
               }

               $output .= &quot;&lt;/{$icontag}&gt;&quot;;

               $output .= &quot;&lt;/{$itemtag}&gt;&quot;;
               if ( $columns &gt; 0 &amp;&amp; ++$i % $columns == 0 ) $output .= '&lt;br style=&quot;clear: both;&quot; /&gt;';
       }

       $output .= &quot;&lt;br style='clear: both;' /&gt;&lt;/div&gt;\n&quot;;

       return $output;
}
?&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://cleverness.org/2012/01/02/wordpress-gallery-with-categories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cleverness WordPress Base Theme 3.0</title>
		<link>http://cleverness.org/2011/11/19/cleverness-wordpress-base-theme-3-0/</link>
		<comments>http://cleverness.org/2011/11/19/cleverness-wordpress-base-theme-3-0/#comments</comments>
		<pubDate>Sun, 20 Nov 2011 03:47:46 +0000</pubDate>
		<dc:creator>Cindy</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[base theme]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://cleverness.org/?p=513</guid>
		<description><![CDATA[<p>Version 3.0 of the <a href="http://cleverness.org/themes/base/">Cleverness WordPress Base Theme</a> is now available. The code has been updated for the latest WordPress functions and includes many new features in functions.php. The theme files have been mostly rewritten and now utilize loop.php. Check out the <a href="http://cleverness.org/themes/base/">base theme&#8217;s page</a> for all the functionality.&#8230; <a href="http://cleverness.org/2011/11/19/cleverness-wordpress-base-theme-3-0/" class="read_more">continue reading</a></p>]]></description>
			<content:encoded><![CDATA[<p class="download">Download <a href="http://cleverness.org/downloads/7" title="WordPress Base Theme">WordPress Base Theme v3.0</a> &#8211; <span class="date">Last Updated 11-19-2011</span></p>
<p>Version 3.0 of the <a href="http://cleverness.org/themes/base/">Cleverness WordPress Base Theme</a> is now available. The code has been updated for the latest WordPress functions and includes many new features in functions.php. The theme files have been mostly rewritten and now utilize loop.php. Check out the <a href="http://cleverness.org/themes/base/">base theme&#8217;s page</a> for all the functionality.</p>
]]></content:encoded>
			<wfw:commentRss>http://cleverness.org/2011/11/19/cleverness-wordpress-base-theme-3-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Please use print stylesheets (or something)!</title>
		<link>http://cleverness.org/2011/10/20/please-use-print-stylesheets-or-something/</link>
		<comments>http://cleverness.org/2011/10/20/please-use-print-stylesheets-or-something/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 23:05:12 +0000</pubDate>
		<dc:creator>Cindy</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[print]]></category>

		<guid isPermaLink="false">http://cleverness.org/?p=506</guid>
		<description><![CDATA[<p>Tonight I&#8217;ve been trying to print off articles on releasing themes to the public. I&#8217;ve been to about 8 or 9 sites. One had a link to print the site using printfriendly (a good option). Only one other used a print stylesheet. Some of these places even sell WordPress themes. Yet their content is unreadable when printed due to elements overlapping each other and such. And thanks, but I don&#8217;t really want to waste paper printing your comment form and all your menu items. I&#8217;m really glad <a href="http://printerfriendly.com">printerfriendly.com</a> is there to make any web page printable. But it&#8217;s still something &#8230; <a href="http://cleverness.org/2011/10/20/please-use-print-stylesheets-or-something/" class="read_more">continue reading</a></p>]]></description>
			<content:encoded><![CDATA[<p>Tonight I&#8217;ve been trying to print off articles on releasing themes to the public. I&#8217;ve been to about 8 or 9 sites. One had a link to print the site using printfriendly (a good option). Only one other used a print stylesheet. Some of these places even sell WordPress themes. Yet their content is unreadable when printed due to elements overlapping each other and such. And thanks, but I don&#8217;t really want to waste paper printing your comment form and all your menu items. I&#8217;m really glad <a href="http://printerfriendly.com">printerfriendly.com</a> is there to make any web page printable. But it&#8217;s still something a site owner should take care of themselves. </p>
<p>Please, people, make your sites printer friendly. </p>
]]></content:encoded>
			<wfw:commentRss>http://cleverness.org/2011/10/20/please-use-print-stylesheets-or-something/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To-Do-List Plugin 2.3 Beta Now Available</title>
		<link>http://cleverness.org/2011/10/02/to-do-list-plugin-2-3-beta-now-available/</link>
		<comments>http://cleverness.org/2011/10/02/to-do-list-plugin-2-3-beta-now-available/#comments</comments>
		<pubDate>Mon, 03 Oct 2011 02:11:55 +0000</pubDate>
		<dc:creator>Cindy</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[to-do list]]></category>

		<guid isPermaLink="false">http://cleverness.org/?p=495</guid>
		<description><![CDATA[<p>The beta version of the <a href="http://cleverness.org/plugins/to-do-list/">To-Do List</a> plugin is available for download from here. </p>
<p>The major new feature in this version is front-end administration shortcodes. The two new ones are &#91;todochecklist&#93; and &#91;todoadmin&#93;. Documentation on these are on the help page under the To-Do List menu item in your WordPress install. </p>
<p>Bugs are to be expected. Please don&#8217;t use this on your live site.</p>
<p>You can comment here or <a href="cindy@cleverness.org">email me</a> with any bugs you find.</p>
<p>== Changelog ==<br />
= 2.3 =<br />
* Moved dashboard widgets settings to the dashboard widget<br />
* Added ajax to dashboard widget, main plugin page, &#8230; <a href="http://cleverness.org/2011/10/02/to-do-list-plugin-2-3-beta-now-available/" class="read_more">continue reading</a></p>]]></description>
			<content:encoded><![CDATA[<p>The beta version of the <a href="http://cleverness.org/plugins/to-do-list/">To-Do List</a> plugin is available for download from here. </p>
<p class="download">Download <a href="http://cleverness.org/downloads/6" title="To-Do List Plugin">To-Do List Plugin v2.3beta</a> &#8211; <span class="date">Last Updated 10-02-2011</span></p>
<p>The major new feature in this version is front-end administration shortcodes. The two new ones are &#91;todochecklist&#93; and &#91;todoadmin&#93;. Documentation on these are on the help page under the To-Do List menu item in your WordPress install. </p>
<p>Bugs are to be expected. Please don&#8217;t use this on your live site.</p>
<p>You can comment here or <a href="cindy@cleverness.org">email me</a> with any bugs you find.</p>
<p>== Changelog ==<br />
= 2.3 =<br />
* Moved dashboard widgets settings to the dashboard widget<br />
* Added ajax to dashboard widget, main plugin page, and category page<br />
* Added front-end shortcode<br />
* HTML in tasks has been fixed<br />
* Started moving code into classes and redoing a lot of it<br />
* Fixed categories not working in multi-site with the plugin network-activated<br />
* Added Czech translation by Tomas Vesely<br />
* Added updated German translation by Janne Fleischer</p>
]]></content:encoded>
			<wfw:commentRss>http://cleverness.org/2011/10/02/to-do-list-plugin-2-3-beta-now-available/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Upcoming 2.3 Version of the To-Do List Plugin</title>
		<link>http://cleverness.org/2011/09/14/upcoming-2-3-version-of-the-to-do-list-plugin/</link>
		<comments>http://cleverness.org/2011/09/14/upcoming-2-3-version-of-the-to-do-list-plugin/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 22:24:47 +0000</pubDate>
		<dc:creator>Cindy</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[to-do list]]></category>

		<guid isPermaLink="false">http://cleverness.org/?p=490</guid>
		<description><![CDATA[<p>I have been working on version 2.3 of the To-Do List Plugin. It does include front-end support. My goal is to release a beta version at the end of this month. I&#8217;ve re-written a lot of the code, converting things into classes. I&#8217;ll still have more work to do on that after the beta comes out.</p>
<p>The front-end support will not show competed items and as such will not have a delete all completed link at release. Category management will not have a front-end version. There is unlikely to be any front-end widgets at beta release, only shortcodes. Visual styling &#8230; <a href="http://cleverness.org/2011/09/14/upcoming-2-3-version-of-the-to-do-list-plugin/" class="read_more">continue reading</a></p>]]></description>
			<content:encoded><![CDATA[<p>I have been working on version 2.3 of the To-Do List Plugin. It does include front-end support. My goal is to release a beta version at the end of this month. I&#8217;ve re-written a lot of the code, converting things into classes. I&#8217;ll still have more work to do on that after the beta comes out.</p>
<p>The front-end support will not show competed items and as such will not have a delete all completed link at release. Category management will not have a front-end version. There is unlikely to be any front-end widgets at beta release, only shortcodes. Visual styling options of the front-end will need to be added in the feature (colors and such).</p>
<p>I&#8217;ve fixed a few bugs, including the multi-site category issue. I&#8217;ve also added a few new features.</p>
<p>I&#8217;ll need people to beta test the new version when it comes out. There is likely to be bugs.</p>
]]></content:encoded>
			<wfw:commentRss>http://cleverness.org/2011/09/14/upcoming-2-3-version-of-the-to-do-list-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress and Ajax</title>
		<link>http://cleverness.org/2011/07/02/wordpress-and-ajax/</link>
		<comments>http://cleverness.org/2011/07/02/wordpress-and-ajax/#comments</comments>
		<pubDate>Sat, 02 Jul 2011 18:22:55 +0000</pubDate>
		<dc:creator>Cindy</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Book Reviews]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[book]]></category>

		<guid isPermaLink="false">http://cleverness.org/?p=486</guid>
		<description><![CDATA[<p>I bought <a href="http://www.wpajax.com">WordPress &#038; Ajax by Ronald Huereca</a> awhile ago and finally got around to reading it. When I bought it, it wasn&#8217;t available in print, like it is now <a href="http://www.amazon.com/gp/product/1451598653/ref=as_li_ss_tl?ie=UTF8&#038;tag=cleverness-20&#038;linkCode=as2&#038;camp=217145&#038;creative=399373&#038;creativeASIN=1451598653">(WordPress &#038; Ajax print version on Amazon)</a>. I had a really hard time getting myself to actually read an ebook on my computer, but I recently bought a nook color and can now read all my ebooks more pleasantly. </p>
<p>But back to the book. I was excited when I found this book because I wanted to add ajax functionality to my to-do list plugin, but didn&#8217;t really understand how. &#8230; <a href="http://cleverness.org/2011/07/02/wordpress-and-ajax/" class="read_more">continue reading</a></p>]]></description>
			<content:encoded><![CDATA[<p>I bought <a href="http://www.wpajax.com">WordPress &#038; Ajax by Ronald Huereca</a> awhile ago and finally got around to reading it. When I bought it, it wasn&#8217;t available in print, like it is now <a href="http://www.amazon.com/gp/product/1451598653/ref=as_li_ss_tl?ie=UTF8&#038;tag=cleverness-20&#038;linkCode=as2&#038;camp=217145&#038;creative=399373&#038;creativeASIN=1451598653">(WordPress &#038; Ajax print version on Amazon)</a>. I had a really hard time getting myself to actually read an ebook on my computer, but I recently bought a nook color and can now read all my ebooks more pleasantly. </p>
<p>But back to the book. I was excited when I found this book because I wanted to add ajax functionality to my to-do list plugin, but didn&#8217;t really understand how. This book shows you exactly how to do it and you can download the code from the book at the website. I admit I didn&#8217;t fully get the javascript in all the examples, but that&#8217;s not the book&#8217;s fault. I&#8217;m sure I&#8217;ll understand it better once I actually use it instead of just looking at it. He uses jQuery in the book, which I liked since that&#8217;s what I was planning on using. </p>
<p>I don&#8217;t have any complaints about the book. I would have loved to have seen some code that I could relate more directly to my plugin&#8217;s functionality, but that&#8217;s just wishful thinking. </p>
<p>Aesthetically, the book looked very nice.  The ebook comes as a PDF. The nook color has the bad habit of showing non-DRM PDFs in the document viewer instead the book viewer. You can&#8217;t easily read them that way. I used the <a href="http://search.barnesandnoble.com/ezPDF-Reader/Unidocs-Inc/e/2940043350329/">ezPDF Reader app</a> and the book looked great. </p>
<p>I would encourage anyone who is interested in using ajax with WordPress to read this book. You really don&#8217;t have any excuse not to because the ebook is now available for free. Some people are upset that something they paid for is now available for free. And maybe I would be too if it was some big publisher, but it&#8217;s one person who took a lot of his own free time to write this book. He deserves whatever you may have paid him. </p>
]]></content:encoded>
			<wfw:commentRss>http://cleverness.org/2011/07/02/wordpress-and-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coming Soon: WPCodeDB</title>
		<link>http://cleverness.org/2011/06/15/coming-soon-wpcodedb/</link>
		<comments>http://cleverness.org/2011/06/15/coming-soon-wpcodedb/#comments</comments>
		<pubDate>Wed, 15 Jun 2011 16:02:47 +0000</pubDate>
		<dc:creator>Cindy</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[wpcodedb]]></category>

		<guid isPermaLink="false">http://cleverness.org/?p=481</guid>
		<description><![CDATA[<p>As the final project of a PHP/MySQL 3 course I&#8217;m taking, we have to create a social web application. </p>
<p>There are many code snippet repositories out there, but none that I found that are specific to WordPress. I thought it&#8217;d be great to have them all in one spot, so I decided to create one as my final project (which needs to be done before the end of this month). </p>
<p>I hope that once it launches, other people will use it besides myself so it will become a great WordPress resource. </p>
<p>In July I&#8217;m planning on resuming development on the &#8230; <a href="http://cleverness.org/2011/06/15/coming-soon-wpcodedb/" class="read_more">continue reading</a></p>]]></description>
			<content:encoded><![CDATA[<p>As the final project of a PHP/MySQL 3 course I&#8217;m taking, we have to create a social web application. </p>
<p>There are many code snippet repositories out there, but none that I found that are specific to WordPress. I thought it&#8217;d be great to have them all in one spot, so I decided to create one as my final project (which needs to be done before the end of this month). </p>
<p>I hope that once it launches, other people will use it besides myself so it will become a great WordPress resource. </p>
<p>In July I&#8217;m planning on resuming development on the To-Do List plugin. I&#8217;ve tested it in single user mode with 3.2RC1 but not in group or master mode yet. Single user with or without categories is working fine.</p>
]]></content:encoded>
			<wfw:commentRss>http://cleverness.org/2011/06/15/coming-soon-wpcodedb/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Development, bug fixes, and support will be very limited until July</title>
		<link>http://cleverness.org/2011/05/17/development-bug-fixes-and-support-will-be-very-limited-until-july/</link>
		<comments>http://cleverness.org/2011/05/17/development-bug-fixes-and-support-will-be-very-limited-until-july/#comments</comments>
		<pubDate>Wed, 18 May 2011 01:13:21 +0000</pubDate>
		<dc:creator>Cindy</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://cleverness.org/?p=478</guid>
		<description><![CDATA[<p>This year I have been planning lots of improvements to the plugin, especially adding Ajax. This past winter and early spring was not good to me health-wise. I have chronic medical conditions plus I had bronchitis a few  times. And a couple ER visits. Now that my health is stable for the moment, I was looking forward to getting back into development. But, it is not to be yet.</p>
<p>The company I work for received a grant last July for training. Unfortunately, the company owner did not approve the training until February. All the training has to be completed by &#8230; <a href="http://cleverness.org/2011/05/17/development-bug-fixes-and-support-will-be-very-limited-until-july/" class="read_more">continue reading</a></p>]]></description>
			<content:encoded><![CDATA[<p>This year I have been planning lots of improvements to the plugin, especially adding Ajax. This past winter and early spring was not good to me health-wise. I have chronic medical conditions plus I had bronchitis a few  times. And a couple ER visits. Now that my health is stable for the moment, I was looking forward to getting back into development. But, it is not to be yet.</p>
<p>The company I work for received a grant last July for training. Unfortunately, the company owner did not approve the training until February. All the training has to be completed by June 30. With me being sick and it being busy at work, I still have 1 class to finish and one to complete (there were three). I&#8217;m taking them through O&#8217;Reilly. I took Javascript 2: Ajax first. The assignments were not overwhelming and took a reasonable amount of time to complete. Then, I started PHP/MySQL 2: Relational and Logical Database Design. Wow. This class has been a lot of work. The assignments take forever, it seems. I still have PHP/MySQL 3 to complete, which sounds like it will be even more work. So, from now until the end of June I will be spending a good amount of free time working on these courses and between that and coding at work, I won&#8217;t be up to working on the plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://cleverness.org/2011/05/17/development-bug-fixes-and-support-will-be-very-limited-until-july/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To-Do List Plugin Issue with Multi-site</title>
		<link>http://cleverness.org/2011/05/09/to-do-list-plugin-issue-with-multi-site/</link>
		<comments>http://cleverness.org/2011/05/09/to-do-list-plugin-issue-with-multi-site/#comments</comments>
		<pubDate>Tue, 10 May 2011 01:35:18 +0000</pubDate>
		<dc:creator>Cindy</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[to-do list]]></category>

		<guid isPermaLink="false">http://cleverness.org/?p=474</guid>
		<description><![CDATA[<p>There&#8217;s a problem with the plugin with version 3.1+, multi-site, and network activation.</p>
<p>I haven&#8217;t figured out why yet it&#8217;s happened with mine, but apparently this isn&#8217;t the only plugin that developed that problem with 3.1. </p>
<p>The temporary work-around is to use individual activation rather than network activation. I will get a bug fix update as soon as I can.&#8230; <a href="http://cleverness.org/2011/05/09/to-do-list-plugin-issue-with-multi-site/" class="read_more">continue reading</a></p>]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a problem with the plugin with version 3.1+, multi-site, and network activation.</p>
<p>I haven&#8217;t figured out why yet it&#8217;s happened with mine, but apparently this isn&#8217;t the only plugin that developed that problem with 3.1. </p>
<p>The temporary work-around is to use individual activation rather than network activation. I will get a bug fix update as soon as I can.</p>
]]></content:encoded>
			<wfw:commentRss>http://cleverness.org/2011/05/09/to-do-list-plugin-issue-with-multi-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Professional WordPress Plugin Development Book Review</title>
		<link>http://cleverness.org/2011/05/09/professional-wordpress-plugin-development-book-review/</link>
		<comments>http://cleverness.org/2011/05/09/professional-wordpress-plugin-development-book-review/#comments</comments>
		<pubDate>Tue, 10 May 2011 00:18:34 +0000</pubDate>
		<dc:creator>Cindy</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Book Reviews]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://cleverness.org/?p=466</guid>
		<description><![CDATA[<p>If you develop WordPress plugins, you need to read <a href="http://www.amazon.com/Professional-WordPress-Plugin-Development-Williams/dp/0470916222%3FSubscriptionId%3D0V3FHJZZ39PZ0N3V2J82%26tag%3Dcleverness-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0470916222">Professional WordPress Plugin Development</a> by Brad Williams, Ozh Richard, and Justin Tadlock.</p>
<p><a href="http://www.amazon.com/Professional-WordPress-Plugin-Development-Williams/dp/0470916222%3FSubscriptionId%3D0V3FHJZZ39PZ0N3V2J82%26tag%3Dcleverness-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0470916222"><img src="http://ecx.images-amazon.com/images/I/51UAaXS%2BLSL._SL160_.jpg" alt="Professional WordPress Plugin Development Review" class="alignright" /></a></p>
<p>I first read this book around the beginning of April. I learned a lot of new things. And then promptly forgot it all. So yesterday and today I went through the book again and took notes. This book is around 500 pages and covers pretty much any topic you could wish for. I made sure to pay special attention to the security section since that is probably the most important feature of plugin development. </p>
<p>I found things that I &#8230; <a href="http://cleverness.org/2011/05/09/professional-wordpress-plugin-development-book-review/" class="read_more">continue reading</a></p>]]></description>
			<content:encoded><![CDATA[<p>If you develop WordPress plugins, you need to read <a href="http://www.amazon.com/Professional-WordPress-Plugin-Development-Williams/dp/0470916222%3FSubscriptionId%3D0V3FHJZZ39PZ0N3V2J82%26tag%3Dcleverness-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0470916222">Professional WordPress Plugin Development</a> by Brad Williams, Ozh Richard, and Justin Tadlock.</p>
<p><a href="http://www.amazon.com/Professional-WordPress-Plugin-Development-Williams/dp/0470916222%3FSubscriptionId%3D0V3FHJZZ39PZ0N3V2J82%26tag%3Dcleverness-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0470916222"><img src="http://ecx.images-amazon.com/images/I/51UAaXS%2BLSL._SL160_.jpg" alt="Professional WordPress Plugin Development Review" class="alignright" /></a></p>
<p>I first read this book around the beginning of April. I learned a lot of new things. And then promptly forgot it all. So yesterday and today I went through the book again and took notes. This book is around 500 pages and covers pretty much any topic you could wish for. I made sure to pay special attention to the security section since that is probably the most important feature of plugin development. </p>
<p>I found things that I want to do to improve my To-Do List plugin (and wrote them down this time) and things that I will keep in mind for my next plugin.</p>
<p>You need to know PHP to understand the code in this book (you can&#8217;t develop a plugin without knowing PHP anyway). I&#8217;m already familiar with a lot of WordPress&#8217;s hooks and functions and how WP works. I felt that this book was right at my skill level. </p>
<p>I recommend this book 100%. </p>
]]></content:encoded>
			<wfw:commentRss>http://cleverness.org/2011/05/09/professional-wordpress-plugin-development-book-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

