<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>Kool Kat Web Designs &#187; WordPress</title>
	<atom:link href="http://www.koolkatwebdesigns.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.koolkatwebdesigns.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 31 Jan 2012 20:40:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Patricia Rovzar Gallery</title>
		<link>http://www.koolkatwebdesigns.com/patricia-rovzar-gallery/</link>
		<comments>http://www.koolkatwebdesigns.com/patricia-rovzar-gallery/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 20:39:47 +0000</pubDate>
		<dc:creator>koolkat</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.koolkatwebdesigns.com/?p=920</guid>
		<description><![CDATA[Patricia Rovzar Gallery launched its new WordPress based website at http://www.rovzargallery.com/. The site was designed by Horsepower.net with Kool Kat Web Designs as the developer. The website uses the following features to enhance the site: 1. A custom post type to display each artists 2. Custom attachment fields to handle items specific to an art [...]]]></description>
			<content:encoded><![CDATA[<p>Patricia Rovzar Gallery launched its new WordPress based website at <a title="Patricia Rovzar Gallery - Seattle Art Gallery" href="http://www.rovzargallery.com/" target="_blank">http://www.rovzargallery.com/</a>.</p>
<p>The site was designed by <a href="http://www.horsepowerdesign.net/1/" target="_blank">Horsepower.net</a> with <a title="Seattle WordPress themes." href="http://www.koolkatwebdesigns.com/" target="_blank">Kool Kat Web Designs</a> as the developer. The website uses the following features to enhance the site:</p>
<p>1. A custom post type to display each artists</p>
<p>2. Custom attachment fields to handle items specific to an art gallery such as price, media type and actual item size.</p>
<p>3. A jQuery carousel from <a href="http://caroufredsel.frebsite.nl/" target="_blank">http://caroufredsel.frebsite.nl/</a>. This carousel was chosen as it supports variable width items.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.koolkatwebdesigns.com/patricia-rovzar-gallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress and Soap Authentication</title>
		<link>http://www.koolkatwebdesigns.com/wordpress-and-soap-authentication/</link>
		<comments>http://www.koolkatwebdesigns.com/wordpress-and-soap-authentication/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 00:57:28 +0000</pubDate>
		<dc:creator>koolkat</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.koolkatwebdesigns.com/?p=883</guid>
		<description><![CDATA[I have been working on a project that requires the use of Soap Authentication in order to use a web service. While I understood how to create a SOAP call in php, I did not know how to get around the standard WordPress authentication process. Fortunately, I found a SOAP Authentication plugin that I could [...]]]></description>
			<content:encoded><![CDATA[<p>I have been working on a project that requires the use of Soap Authentication in order to use a web service. While I understood how to create a SOAP call in php, I did not know how to get around the standard WordPress authentication process. Fortunately, I found a <a href="http://wordpress.org/extend/plugins/soap-authentication/" target="_blank">SOAP Authentication plugin</a> that I could adapt to my needs. The plugin helped me understand what actions and filters were required to achieve the desired results. Since the site has specific requirements that the end-user cannot change, I did not need any of the user interface provided by the plugin. As a result, I stripped all of that away and just made the code I needed part of my theme. I  also needed to allow the end-user to login with an email instead of a user name and to store a token for further use when making additional SOAP calls to retrieve data from the Web Service. The token gets stored in the user meta data. The main part of code that handles the SOAP authentication process is presented below. You will have to provide your own valid WSDL file; the one in the example does not exist.</p>
<p><code>remove_filter( 'authenticate', 'wp_authenticate_username_password', 20, 3 );<br />
//add_filter( 'authenticate', array('Soap_Auth', 'rotary_email_login_authenticate'), 20, 3 );<br />
add_action('wp_authenticate', array('Soap_Auth', 'soap_auth_check_login'), 1, 2);<br />
add_action('lost_password', array('Soap_Auth', 'disable_function'));<br />
add_action('user_register', array('Soap_Auth', 'disable_function'));<br />
add_action('wordp', array('Soap_Auth', 'disable_function_register'));<br />
add_action('retrieve_password', array('Soap_Auth', 'disable_function'));<br />
add_action('password_reset', array('Soap_Auth', 'disable_function'));<br />
add_filter('login_errors', array('Soap_Auth', 'soap_errors'));<br />
add_filter('show_password_fields', array('Soap_Auth', 'soap_show_password_fields'));<br />
</code><br />
<code><br />
function soap_auth_check_login($username, $password) {<br />
		require_once(ABSPATH.'wp-includes/registration.php');<br />
try{<br />
				$client = new SoapClient('http://www.someWSDL.com', array('trace' => true));<br />
				$response = $client->Authenticate($username, $password);<br />
			} catch(SoapFault $e) {<br />
				$response = $e;<br />
				global $error_type;<br />
				$error_type = "soap";<br />
				global $error_msg;<br />
				$error_msg = "There was a problem with the soap service: " . $e->getMessage();<br />
			}<br />
            </code><code><br />
			if ( $response->AuthorizationToken->Token != 0) {<br />
			  $email = 	$username;<br />
			  $username = substr(trim($username), 0, strlen($username) - 4);<br />
			   if ( $user_id = username_exists($username)) {<br />
				   update_user_meta( $user_id, 'rotary_user_session', $response->AuthorizationToken->Token);<br />
			   }<br />
			   else {<br />
				  remove_action('user_register', array('Soap_Auth', 'disable_function'));<br />
				  $user_id = wp_create_user( $username, $password, $email );<br />
				  add_user_meta( $user_id, 'rotary_user_session', $response->AuthorizationToken->Token, true );<br />
			  }</p>
<p>		    add_filter( 'authenticate', array('Soap_Auth', 'rotary_email_login_authenticate'), 20, 3 );<br />
			}</code><br />
<code><br />
function rotary_email_login_authenticate( $user, $username, $password ) {<br />
		$user = get_user_by_email( $username );<br />
		if ( $user )<br />
			$username = $user->user_login;</p>
<p>		return wp_authenticate_username_password( null, $username, $password );<br />
	} </code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.koolkatwebdesigns.com/wordpress-and-soap-authentication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Map API V3 &#8211; revisited</title>
		<link>http://www.koolkatwebdesigns.com/google-map-api-v3-revisited/</link>
		<comments>http://www.koolkatwebdesigns.com/google-map-api-v3-revisited/#comments</comments>
		<pubDate>Thu, 10 Mar 2011 23:24:59 +0000</pubDate>
		<dc:creator>koolkat</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[Wordpress transients]]></category>

		<guid isPermaLink="false">http://www.koolkatwebdesigns.com/?p=766</guid>
		<description><![CDATA[In my previous posts on using the Google Map API, I did not address how slow the geo-coding (converting addresses to latitude and longitude) process is.  I wanted to find some method of  caching the data for a reasonable period of time so that the map loads quickly but I still can get address changes [...]]]></description>
			<content:encoded><![CDATA[<p>In my previous posts on using the <a title="Google Map API V3" href="http://www.koolkatwebdesigns.com/google-map-api-v3/">Google Map API</a>, I did not address how slow the geo-coding (converting addresses to latitude and longitude) process is.  I wanted to find some method of  caching the data for a reasonable period of time so that the map loads quickly but I still can get address changes in a timely manner.</p>
<p>Since I am using WordPress, this led me to <a href="http://codex.wordpress.org/Transients_API" target="_blank">transients</a>.  I added my transient function to the <a href="http://codex.wordpress.org/Plugin_API/Action_Reference" target="_blank">after_setup_theme</a> hook, which runs  before the init hook since I wanted to cache the data as soon as possible. Here is the code I used in<strong> functions.php</strong>:</p>
<p><code>add_action( 'after_setup_theme', 'rotary_setup' );</code></p>
<p><code>if ( ! function_exists( 'rotary_setup' ) ):<br />
function rotary_setup() {<br />
$markers = array();<br />
$markerRow = 0;<br />
if (false === ($value = get_transient('map_data'))) {<br />
$rotaryclubs = simplexml_load_file('http://www.ismyrotaryclub.org/club/Clubmeetings.cfm?D=5030&amp;ClubTypeIDs=0,4&amp;xsl=http://rotary5030.org/xsl/MeetingsX.xsl');<br />
foreach($rotaryclubs-&gt;CLUB as $club) {<br />
if (strlen (strval($club-&gt;MEETINGADDRESS)) &gt;0 ) {<br />
$address =  urlencode($club-&gt;MEETINGADDRESS . ' ' . $club-&gt;MEETINGCITY . ' ' . $club-&gt;MEETINGSTATECODE . ' ' . $club-&gt;MEETINGPOSTALCODE);<br />
$geocode = simplexml_load_file('http://maps.googleapis.com/maps/api/geocode/xml?address=' . $address . '&amp;sensor=false');<br />
$markers[$markerRow] = array("clubname"=&gt;strval($club-&gt;CLUBNAME), "address"=&gt;strval($geocode-&gt;result-&gt;formatted_address),"lat"=&gt;strval($geocode-&gt;result-&gt;geometry-&gt;location-&gt;lat), "lng"=&gt;strval($geocode-&gt;result-&gt;geometry-&gt;location-&gt;lng));<br />
$markerRow++;<br />
}<br />
}<br />
set_transient('map_data', json_encode($markers), 60*60*12);<br />
}<br />
}<br />
endif;</code></p>
<p>&nbsp;</p>
<p>Notice a few things about this code:</p>
<ol>
<li>It is basically the same method of pulling XML data and creating JSON outpu</li>
<li>The <em>transient</em> data expires in 12 hours</li>
<li>We check to see if the <em>transient</em> data exists before running the code.</li>
</ol>
<p>To use this code to build the map I added the following to my <strong>header.php</strong>:</p>
<p><code>&lt;script type="text/javascript"&gt;<br />
var data = &lt;?php echo get_transient('map_data'); ?&gt;;<br />
&lt;/script&gt;</code></p>
<p>Then my <strong>initialize()</strong> javascript function no longer needs to call <code>getJSON</code> as I already have the data. The new function looks like this:</p>
<p><code>function initialize() {<br />
if (jQuery("#map_canvas").length &gt; 0) {<br />
var latlng = new google.maps.LatLng(47.6062095, -122.3320708);<br />
var myOptions = {<br />
zoom: 8,<br />
center: latlng,<br />
mapTypeId: google.maps.MapTypeId.ROADMAP<br />
};<br />
map = new google.maps.Map(document.getElementById("map_canvas"),  myOptions);			for (i=0; i<br />
addMarker(data[i].lat, data[i].lng, data[i].clubname, data[i].address)<br />
}<br />
}<br />
}</code></p>
<p>You can view the results of the geo-coding on this <a href="http://rotary5030.org/support/meeting-locations" target="_blank">website</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.koolkatwebdesigns.com/google-map-api-v3-revisited/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Short South Management + Development Blog</title>
		<link>http://www.koolkatwebdesigns.com/short-south-management-development-blog/</link>
		<comments>http://www.koolkatwebdesigns.com/short-south-management-development-blog/#comments</comments>
		<pubDate>Thu, 10 Mar 2011 19:12:06 +0000</pubDate>
		<dc:creator>koolkat</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.koolkatwebdesigns.com/?p=761</guid>
		<description><![CDATA[Short South Management + Development of Grand Rapids, MI  specializing in property management  now has a WordPress blog that coordinates with the rest of the website.]]></description>
			<content:encoded><![CDATA[<p>Short South Management + Development of Grand Rapids, MI  specializing in property management  now has a <a href="http://shortsouth.com/blog/" target="_blank">WordPress blog</a> that coordinates with the rest of the website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.koolkatwebdesigns.com/short-south-management-development-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Contact Form 7 &#8211; Part 1</title>
		<link>http://www.koolkatwebdesigns.com/wordpress-contact-form-7/</link>
		<comments>http://www.koolkatwebdesigns.com/wordpress-contact-form-7/#comments</comments>
		<pubDate>Mon, 07 Mar 2011 19:17:46 +0000</pubDate>
		<dc:creator>koolkat</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[contact form 7]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.koolkatwebdesigns.com/?p=723</guid>
		<description><![CDATA[Many WordPress users rely on the Contact Form 7 plugin to create a contact form that can be emailed.  There have been many posts and videos on how to install and configure the plugin, so I won&#8217;t cover that here. Instead, I am going to show a few sites which take the contact page to [...]]]></description>
			<content:encoded><![CDATA[<p>Many WordPress users rely on the <a href="http://contactform7.com/" target="_blank">Contact Form 7 plugin</a> to create a contact form that can be emailed.  There have been many posts and videos on how to install and configure the plugin, so I won&#8217;t cover that here. Instead, I am going to show a few sites which take the contact page to the next level.</p>
<h3>Custom Layout</h3>
<p>If you take look at the form below, you can see it is changed from the usual &#8220;out of the box&#8221; layout you get when Contact Form 7 is installed:</p>
<p><a href="http://www.koolkatwebdesigns.com/wp-content/uploads/2011/03/custom-contact-form7.jpg"><img class="alignnone size-full wp-image-731" title="Custom Contact Form 7" src="http://www.koolkatwebdesigns.com/wp-content/uploads/2011/03/custom-contact-form7.jpg" alt="Custom Contact Form 7" width="668" height="527" /></a></p>
<p>&nbsp;</p>
<ol>
<li>In order to get this form to work we need to do the following:</li>
<li>Install and activate the <a href="http://ideasilo.wordpress.com/2009/03/14/really-simple-captcha/" target="_blank">Really Simple CAPTCHA</a> plugin.</li>
<li>Edit the Contact Form 7 settings so you end up with the following:</li>
</ol>
<p><strong>Form Layout</strong></p>
<p><a href="http://www.koolkatwebdesigns.com/wp-content/uploads/2011/03/Contact-form-layout.jpg"><img class="alignnone size-full wp-image-736" title="Contact form layout" src="http://www.koolkatwebdesigns.com/wp-content/uploads/2011/03/Contact-form-layout.jpg" alt="Contact form layout" width="685" height="389" /></a></p>
<p>&nbsp;</p>
<p><strong>Email Header</strong></p>
<p><a href="http://www.koolkatwebdesigns.com/wp-content/uploads/2011/03/Contact-form-email-header.jpg"><img class="alignnone size-full wp-image-738" title="Contact form email header" src="http://www.koolkatwebdesigns.com/wp-content/uploads/2011/03/Contact-form-email-header.jpg" alt="Contact form email header" width="700" height="383" /></a></p>
<p><strong>Email Message</strong></p>
<p><a href="http://www.koolkatwebdesigns.com/wp-content/uploads/2011/03/Contact-form-email-message.jpg"><img class="alignnone size-full wp-image-740" title="Contact form email message" src="http://www.koolkatwebdesigns.com/wp-content/uploads/2011/03/Contact-form-email-message.jpg" alt="Contact form email message" width="554" height="202" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>To get our contact form to look like the one we:</p>
<ol>
<li>Remove all the code from the Form area except for the submit code</li>
<li>Add the new fields with the appropriate names and IDs after selecting the Generate Tag dropdown. You will need to add the &lt;p&gt; and &lt;label&gt; tags yourself.</li>
<li>Following the directions on the screen to copy the fields to the Form and Message area. Note, that for this form we replace the [your-name] field with our [first-name] [last-name] fields in both the Message Body area and the Mail area.</li>
</ol>
<p><a href="http://www.koolkatwebdesigns.com/wp-content/uploads/2011/03/Generate-tag.jpg"><img class="alignnone size-full wp-image-745" title="Generate tag" src="http://www.koolkatwebdesigns.com/wp-content/uploads/2011/03/Generate-tag.jpg" alt="Generate tag" width="680" height="493" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>When we have finished filling out the form and saving our changes, the one remaining item is the CSS.<br />
<code> </code></p>
<div>
<div>input[type="text"], textarea {</div>
<div>
<div>
<div>border: 1px solid #0B2678;</div>
</div>
</div>
<div>}</div>
</div>
<p>.wpcf7-form {margin-top:20px;}<br />
.wpcf7-form label {<br />
float:left;<br />
text-align:right;<br />
display:block;<br />
margin-right:0.5em;<br />
width: 8em;<br />
font-weight:bold;<br />
}<br />
.wpcf7-form input[type="radio"] {<br />
vertical-align:top;<br />
}<br />
div.wpcf7-mail-sent-ok,<br />
div.wpcf7-mail-sent-ng,<br />
div.wpcf7-spam-blocked,<br />
div.wpcf7-validation-errors {<br />
border:1px solid #EC8800 !important;<br />
}<br />
p#wpcf7-indicates-required {<br />
font-size:.9em;<br />
color:#888888;<br />
}</p>
<p>And for the submit button, you will see rounded corners in Firefox or WebKit (safari, chrome) browsers as well as IE9:</p>
<p><code>input[type="submit"]{<br />
background:#0b2678;<br />
color:#FFFFFF;<br />
padding:3px;<br />
border:none;<br />
font-size:1.1em;<br />
-moz-border-radius:5px;<br />
-webkit-border-radius:5px;<br />
border-radius:5px;<br />
letter-spacing:.07em;<br />
}<br />
input[type="submit"]:hover, input[type="submit"]:focus{<br />
color: #ababcc;<br />
}</code></p>
<p>The actual page can be found at <a href="http://createthelifeyouimaginecoaching.com/contact/" target="_blank">http://createthelifeyouimaginecoaching.com/contact/</a>.</p>
<p>See <a href="http://www.koolkatwebdesigns.com/wordpress-contact-form-7-part-2/">http://www.koolkatwebdesigns.com/wordpress-contact-form-7-part-2/</a> for another example.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.koolkatwebdesigns.com/wordpress-contact-form-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Worperss Posts for Dynamic Content</title>
		<link>http://www.koolkatwebdesigns.com/using-worprss-posts-for-dynamic-content/</link>
		<comments>http://www.koolkatwebdesigns.com/using-worprss-posts-for-dynamic-content/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 01:32:51 +0000</pubDate>
		<dc:creator>koolkat</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress CMS]]></category>

		<guid isPermaLink="false">http://www.koolkatwebdesigns.com/?p=361</guid>
		<description><![CDATA[In working on the website for the Allied Arts Foundation, I was able to take advantage of WordPress&#8217; post to create dynamic content for my website. First, on the home page I use the post&#8217;s  excerpt and featured image to feed the slideshow: global $post; $featured_posts = query_posts('category_name=Featured Artists&#38;orderby=ID&#38;order=ASC'); foreach( $featured_posts as $post ) { [...]]]></description>
			<content:encoded><![CDATA[<p>In working on the website for the <a href="http://www.alliedarts-foundation.org/" target="_blank">Allied Arts Foundation</a>, I was able to take advantage of WordPress&#8217; post to create dynamic content for my website.</p>
<p>First, on the home page I use the post&#8217;s  excerpt and featured image to feed the slideshow:<br />
<code><br />
global $post;<br />
$featured_posts = query_posts('category_name=Featured Artists&amp;orderby=ID&amp;order=ASC');<br />
foreach( $featured_posts as $post ) {<br />
setup_postdata($post);<br />
?&gt;<br />
&lt;div style="width:960px;"&gt;<br />
&lt;div&gt;<br />
&lt;h2&gt;&lt;?php the_title() ?&gt;&lt;/h2&gt;<br />
&lt;?php $sub_head = get_post_custom_values('excerpt-subhead', $post-&gt;ID); ?&gt;<br />
&lt;h3&gt;&lt;?php echo $sub_head[0]; ?&gt; &lt;/h3&gt;<br />
&lt;?php the_excerpt() ?&gt;<br />
&lt;p&gt;&lt;a href=" &lt;?php echo get_permalink($post-&gt;ID); ?&gt;"&gt;&lt;span&gt;read more&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;<br />
&lt;/div&gt;&lt;!-- .homeleft --&gt;<br />
&lt;div&gt;<br />
&lt;?php<br />
if (has_post_thumbnail()) {<br />
echo get_the_post_thumbnail($post-&gt;ID, $size='full');<br />
}?&gt;<br />
&lt;/div&gt;&lt;!-- .homeright --&gt;<br />
&lt;/div&gt;&lt;!-- .hometop --&gt;<br />
&lt;?php }<br />
?&gt;<br />
</code><br />
I also have a custom category template for my &#8220;artists&#8221; category (<code>category-3.php</code>). On this page, I take advantage of the <a href="http://sorgalla.com/jcarousel/" target="_blank">jCarousel</a> plugin:</p>
<p><code><br />
jQuery('#mycarousel').jcarousel({<br />
// Configuration goes here<br />
});<br />
</code></p>
<p>And then this html and php:<br />
<code><br />
&lt;ul id="mycarousel"&gt;<br />
&lt;?php while ( have_posts() ) : the_post(); ?&gt;<br />
&lt;?php<br />
$args = array(<br />
'post_type' =&gt; 'attachment',<br />
'numberposts' =&gt; -1,<br />
'post_status' =&gt; null,<br />
'post_parent' =&gt; $post-&gt;ID,<br />
'numberposts' =&gt; 999<br />
);<br />
$attachments = get_posts($args);<br />
if ($attachments) {<br />
foreach ($attachments as $attachment) {<br />
//echo apply_filters('the_title', $attachment-&gt;post_title);<br />
//the_attachment_link($attachment-&gt;ID, false);<br />
$custom_image = '&lt;li&gt;&lt;a href="'. get_permalink($post-&gt;ID).'"&gt;'.wp_get_attachment_image($attachment-&gt;ID, $size="thumbnail", $icon = false).'&lt;/a&gt;&lt;/li&gt;';<br />
echo $custom_image;<br />
}<br />
}<br />
?&gt;<br />
&lt;?php endwhile; // End the loop. Whew. ?&gt;<br />
&lt;/ul&gt;<br />
</code></p>
<p>Of course, there is all of the CSS needed for the carousel. Most of this is shipped with the plugin so I just need to modify it to meld with the look and feel of my theme.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.koolkatwebdesigns.com/using-worprss-posts-for-dynamic-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data2insight Website Launched</title>
		<link>http://www.koolkatwebdesigns.com/data2insight-website-launched/</link>
		<comments>http://www.koolkatwebdesigns.com/data2insight-website-launched/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 22:05:32 +0000</pubDate>
		<dc:creator>koolkat</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.koolkatwebdesigns.com/?p=302</guid>
		<description><![CDATA[Data2insight helps organizations put 4 key strategies to work: Visualization, Measurement, Research and Planning. The website is built on a WordPress platform for easy content management and includes a blog.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.data2insight.com/" target="_blank">Data2insight</a> helps organizations put 4 key strategies to work: Visualization, Measurement, Research and Planning. </p>
<p>The website is built on a WordPress platform for easy content management and includes a blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.koolkatwebdesigns.com/data2insight-website-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jcarousel for WordPress</title>
		<link>http://www.koolkatwebdesigns.com/jcarousel-for-wordpress/</link>
		<comments>http://www.koolkatwebdesigns.com/jcarousel-for-wordpress/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 01:46:41 +0000</pubDate>
		<dc:creator>koolkat</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Plugin]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jcarousel]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[pictures]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://www.koolkatwebdesigns.com/?p=243</guid>
		<description><![CDATA[This plugin displays images in a carousel. It was inspired by Carousel Gallery by Joen. Download Jcarousel for WordPress Now Installation 1. Unpack the plugin, put it in your &#8220;plugins&#8221; folder (`/wp-content/plugins/`). 2. Activate the plugin from the Plugins section. F.A.Q. How do I change the layout? Most of the design, you have to do [...]]]></description>
			<content:encoded><![CDATA[<p>This plugin displays images in a carousel. It was inspired by Carousel Gallery by Joen. </p>
<p class="download"><span ><a  href="http://downloads.wordpress.org/plugin/jcarousel-for-wordpress.zip">Download Jcarousel for WordPress Now</a></span></p>

<a href='http://www.koolkatwebdesigns.com/jcarousel-for-wordpress/kentorchids_1/' title='KentOrchids_1'><img width="150" height="150" src="http://www.koolkatwebdesigns.com/wp-content/uploads/2010/04/KentOrchids_1-150x150.jpg" class="attachment-thumbnail" alt="KentOrchids_1" title="KentOrchids_1" /></a>
<a href='http://www.koolkatwebdesigns.com/jcarousel-for-wordpress/kentorchids_2/' title='KentOrchids_2'><img width="150" height="150" src="http://www.koolkatwebdesigns.com/wp-content/uploads/2010/04/KentOrchids_2-150x150.jpg" class="attachment-thumbnail" alt="KentOrchids_2" title="KentOrchids_2" /></a>
<a href='http://www.koolkatwebdesigns.com/jcarousel-for-wordpress/kentorchids_3/' title='KentOrchids_3'><img width="150" height="150" src="http://www.koolkatwebdesigns.com/wp-content/uploads/2010/04/KentOrchids_3-150x150.jpg" class="attachment-thumbnail" alt="KentOrchids_3" title="KentOrchids_3" /></a>
<a href='http://www.koolkatwebdesigns.com/jcarousel-for-wordpress/kentorchids_4/' title='KentOrchids_4'><img width="150" height="150" src="http://www.koolkatwebdesigns.com/wp-content/uploads/2010/04/KentOrchids_4-150x150.jpg" class="attachment-thumbnail" alt="KentOrchids_4" title="KentOrchids_4" /></a>
<a href='http://www.koolkatwebdesigns.com/jcarousel-for-wordpress/kentorchids_5/' title='KentOrchids_5'><img width="150" height="150" src="http://www.koolkatwebdesigns.com/wp-content/uploads/2010/04/KentOrchids_5-150x150.jpg" class="attachment-thumbnail" alt="KentOrchids_5" title="KentOrchids_5" /></a>
<a href='http://www.koolkatwebdesigns.com/jcarousel-for-wordpress/kentorchids_6/' title='KentOrchids_6'><img width="150" height="150" src="http://www.koolkatwebdesigns.com/wp-content/uploads/2010/04/KentOrchids_6-150x150.jpg" class="attachment-thumbnail" alt="KentOrchids_6" title="KentOrchids_6" /></a>
<a href='http://www.koolkatwebdesigns.com/jcarousel-for-wordpress/theexotics_1/' title='TheExotics_1'><img width="150" height="150" src="http://www.koolkatwebdesigns.com/wp-content/uploads/2010/04/TheExotics_1-150x150.jpg" class="attachment-thumbnail" alt="TheExotics_1" title="TheExotics_1" /></a>
<a href='http://www.koolkatwebdesigns.com/jcarousel-for-wordpress/theexotics_2/' title='TheExotics_2'><img width="150" height="150" src="http://www.koolkatwebdesigns.com/wp-content/uploads/2010/04/TheExotics_2-150x150.jpg" class="attachment-thumbnail" alt="TheExotics_2" title="TheExotics_2" /></a>
<a href='http://www.koolkatwebdesigns.com/jcarousel-for-wordpress/theexotics_3/' title='TheExotics_3'><img width="150" height="150" src="http://www.koolkatwebdesigns.com/wp-content/uploads/2010/04/TheExotics_3-150x150.jpg" class="attachment-thumbnail" alt="TheExotics_3" title="TheExotics_3" /></a>
<a href='http://www.koolkatwebdesigns.com/jcarousel-for-wordpress/theexotics_4/' title='TheExotics_4'><img width="150" height="150" src="http://www.koolkatwebdesigns.com/wp-content/uploads/2010/04/TheExotics_4-150x150.jpg" class="attachment-thumbnail" alt="TheExotics_4" title="TheExotics_4" /></a>
<a href='http://www.koolkatwebdesigns.com/jcarousel-for-wordpress/theexotics_5/' title='TheExotics_5'><img width="150" height="150" src="http://www.koolkatwebdesigns.com/wp-content/uploads/2010/04/TheExotics_5-150x150.jpg" class="attachment-thumbnail" alt="TheExotics_5" title="TheExotics_5" /></a>
<a href='http://www.koolkatwebdesigns.com/jcarousel-for-wordpress/theexotics_6/' title='TheExotics_6'><img width="150" height="150" src="http://www.koolkatwebdesigns.com/wp-content/uploads/2010/04/TheExotics_6-150x150.jpg" class="attachment-thumbnail" alt="TheExotics_6" title="TheExotics_6" /></a>

<h2>Installation</h2>
<p>1. Unpack the plugin, put it in your &#8220;plugins&#8221; folder (`/wp-content/plugins/`).<br />
2. Activate the plugin from the Plugins section.</p>
<h2>F.A.Q.</h2>
<p>How do I change the layout?<br />
Most of the design, you have to do using CSS. Fortunately there are lots of classes to hook into.</p>
<p>How do I change the image and thumbnail sizes?<br />
Carousel Gallery uses the WordPress Media settings for this (Settings -> Media).</p>
<form id="donateform" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick"/>
<input type="hidden" name="hosted_button_id" value="T3WG23RLQLR2G"/>
<input type="image" src="http://www.koolkatwebdesigns.com/wp-content/themes/koolkat/images/Donate.gif" name="submit" alt="PayPal - The safer, easier way to pay online!" />
<img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"/><br />
</form>
<p>Photos for this demo were provided by Jerry Whiting of <a href="http://www.jetcityorange.com/" target="_blank">JetCityOrange</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.koolkatwebdesigns.com/jcarousel-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seattle Town Car and Limousine Service Website</title>
		<link>http://www.koolkatwebdesigns.com/seattle-town-car-and-limousine-service-website/</link>
		<comments>http://www.koolkatwebdesigns.com/seattle-town-car-and-limousine-service-website/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 23:08:26 +0000</pubDate>
		<dc:creator>koolkat</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.koolkatwebdesigns.com/?p=222</guid>
		<description><![CDATA[Please, LLC Limousine and Town Car Service of Seattle now has a website. This site is designed on a WordPress platform using a custom theme that reflects the company&#8217;s branding.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.pleasetowncarlimoservice.com/" target="_blank">Please, LLC</a> Limousine and Town Car Service of Seattle now has a website. This site is designed on a WordPress platform using a custom theme that reflects the company&#8217;s branding.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.koolkatwebdesigns.com/seattle-town-car-and-limousine-service-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another WordPress theme</title>
		<link>http://www.koolkatwebdesigns.com/another-wordpress-theme/</link>
		<comments>http://www.koolkatwebdesigns.com/another-wordpress-theme/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 23:04:30 +0000</pubDate>
		<dc:creator>koolkat</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.koolkatwebdesigns.com/?p=220</guid>
		<description><![CDATA[As part of the team working on a relaunch of OnPoint Urgent Care on a WordPress platform, my role was to design the theme. My role consisted of creating a lot of CSS as well as implementing the jQuery used in the drop down menus and slide show.]]></description>
			<content:encoded><![CDATA[<p>As part of the team working on a relaunch of <a href="http://www.onpointurgentcare.com/" target="_blank">OnPoint Urgent Care</a> on a WordPress platform, my role was to design the theme. My role consisted of creating a lot of CSS as well as implementing the jQuery used in the drop down menus and slide show.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.koolkatwebdesigns.com/another-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

