<?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>JohnMartin Web and Design Studio</title>
	<atom:link href="http://www.johnmartin.ws/feed" rel="self" type="application/rss+xml" />
	<link>http://www.johnmartin.ws</link>
	<description>Portfolio of Web Applications and Designs</description>
	<lastBuildDate>Sun, 29 Aug 2010 03:01:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to place Yahoo Messenger Status Widget on your blog</title>
		<link>http://www.johnmartin.ws/php-scripts/how-to-place-yahoo-messenger-status-widget-on-your-blog</link>
		<comments>http://www.johnmartin.ws/php-scripts/how-to-place-yahoo-messenger-status-widget-on-your-blog#comments</comments>
		<pubDate>Sun, 29 Aug 2010 02:47:40 +0000</pubDate>
		<dc:creator>JM</dc:creator>
				<category><![CDATA[PHP Scripts]]></category>
		<category><![CDATA[code snippets]]></category>
		<category><![CDATA[Status]]></category>
		<category><![CDATA[yahoo messenger]]></category>
		<category><![CDATA[yahoo messenger style]]></category>
		<category><![CDATA[YM]]></category>
		<category><![CDATA[ym status]]></category>
		<category><![CDATA[YM Widget]]></category>

		<guid isPermaLink="false">http://www.johnmartin.ws/?p=83</guid>
		<description><![CDATA[If your wanting to place a widget which shows your YM status. just copy and paste this lines of code &#60;a href=&#34;http://edit.yahoo.com/config/send_webmesg?.target=YMID&#38;.src=pg&#34;&#62; &#60;img border=&#34;0&#34; src=&#34;http://opi.yahoo.com/online?u=YMID&#38;m=g&#38;t=0&#38;l=us&#34; &#62;&#60;/a&#62; remember to replace YMID with your real YM id. and change the value of t=1 from 0 to 9 to change style enjoy!]]></description>
			<content:encoded><![CDATA[<p>If your wanting to place a widget which shows your YM status. just copy and paste this lines of code</p>
<pre class="brush: xml;">
&lt;a href=&quot;http://edit.yahoo.com/config/send_webmesg?.target=YMID&amp;.src=pg&quot;&gt;
&lt;img border=&quot;0&quot; src=&quot;http://opi.yahoo.com/online?u=YMID&amp;m=g&amp;t=0&amp;l=us&quot; &gt;&lt;/a&gt;
</pre>
<p>remember to replace YMID with your real YM id.<br />
and change the value of t=1 from 0 to 9 to change style<br />
enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.johnmartin.ws/php-scripts/how-to-place-yahoo-messenger-status-widget-on-your-blog/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Let&#8217;s make a WordPress theme widget ready!</title>
		<link>http://www.johnmartin.ws/wordpress/lets-make-a-wordpress-theme-widget-ready</link>
		<comments>http://www.johnmartin.ws/wordpress/lets-make-a-wordpress-theme-widget-ready#comments</comments>
		<pubDate>Tue, 24 Aug 2010 01:42:09 +0000</pubDate>
		<dc:creator>JM</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[code snippets]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[ready]]></category>
		<category><![CDATA[template widget]]></category>
		<category><![CDATA[theme widget]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[widget ready]]></category>
		<category><![CDATA[wp-widget]]></category>

		<guid isPermaLink="false">http://www.johnmartin.ws/?p=77</guid>
		<description><![CDATA[WordPress is customizable in unlimited scope we just need to know the hooks, filters, classes and function.  For now I will tackle about several of this. We will be using some of them to create our own widget. What you will learn? Make your theme Widget Ready Put a Widget placeholder somewhere in your wordpress [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress is customizable in unlimited scope we just need to know the hooks, filters, classes and function.  For now I will tackle about several of this. We will be using some of them to create our own widget.</p>
<p><strong>What you will learn?</strong></p>
<ol>
<li> Make your theme Widget Ready</li>
<li> Put a Widget placeholder somewhere in your wordpress theme</li>
<li>Make our Widget Plugin</li>
<li>Activating the plugin</li>
<li>Placing the widget in the sidebar</li>
</ol>
<p>So lets get it going. Lets build our Widget plugin. Just keep in mind that you are using a theme should be widget ready. Just in case your theme is not here&#8217;s how.</p>
<p>Lets tell WordPress that our theme supports widgets<br />
Open  or make  functions.php in our wordpress theme</p>
<pre class="brush: php;">
add_action( 'widgets_init', 'my_Widget_init' );
function my_Widget_init(){
 register_sidebar( array(
		'name' =&gt; __( 'widget-sidebar1', 'themename' ),
		'id' =&gt; 'widget-sidebar1',
		'description' =&gt; __( 'Sidebar 1 Area'),
		'before_widget' =&gt; '&lt;li id=&quot;%1$s&quot; class=&quot;widget-container %2$s&quot;&gt;',
		'after_widget' =&gt; '&lt;/li&gt;',
		'before_title' =&gt; '&lt;h3 class=&quot;widgettitle&quot;&gt;',
		'after_title' =&gt; '&lt;/h3&gt;',
	) );
};
</pre>
<p><strong>What happened?</strong></p>
<pre class="brush: php;">add_action( 'widgets_init', 'my_Widget_init' );</pre>
<p>We have hook an action and will be triggered when the WordPress core calls do_action().Ok it still sounds to technical Lets put it this way we told WordPress that our theme is widget ready and we have defined widgets and WordPress initialize it by calling our function my_Widget_init()<br />
And next we have made the function that defines the sidebars details namely: name, id, description,before_widget, after_widget,before_title, and after_title. Please take special note on line 7 we have put &#8220;%1$s&#8221; and &#8220;%2$s&#8221; to have wordpress put unique ID and Class name.</p>
<p>There! your theme is now widget ready!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.johnmartin.ws/wordpress/lets-make-a-wordpress-theme-widget-ready/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to modify .htaccess in wordpress</title>
		<link>http://www.johnmartin.ws/wordpress/how-to-modify-htaccess-in-wordpress</link>
		<comments>http://www.johnmartin.ws/wordpress/how-to-modify-htaccess-in-wordpress#comments</comments>
		<pubDate>Mon, 23 Aug 2010 07:23:33 +0000</pubDate>
		<dc:creator>JM</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[code snippets]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[mod rewrite]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress tutorial]]></category>
		<category><![CDATA[wp tutorial]]></category>
		<category><![CDATA[wp_rewrite]]></category>

		<guid isPermaLink="false">http://www.johnmartin.ws/php-scripts/how-to-modify-htaccess-in-wordpress</guid>
		<description><![CDATA[This will modify directly the .htaccess instead of wordpress(index.php) handling the redirect. here is the code $wp_rewrite-&#62;non_wp_rules &#60;?php function write_redirect($wp_rewrite){ $wp_rewrite-&#62;non_wp_rules = ARRAY('Pattern','substitution'); } add_filter('generate_rewrite_rules','write_redirect'); ?&#62; you can change the hook (add_filter) to another hook on wordpress]]></description>
			<content:encoded><![CDATA[<p>This will modify directly the .htaccess instead of wordpress(index.php) handling the redirect. here is the code </p>
<h3><strong>$wp_rewrite-&gt;non_wp_rules</strong></h3>
<pre class="brush: php;">
&lt;?php
function write_redirect($wp_rewrite){
$wp_rewrite-&gt;non_wp_rules = ARRAY('Pattern','substitution'); }
add_filter('generate_rewrite_rules','write_redirect');
?&gt; </pre>
<pre>you can change the hook (add_filter) to another hook on wordpress</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.johnmartin.ws/wordpress/how-to-modify-htaccess-in-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Be ready for the New look of my blog</title>
		<link>http://www.johnmartin.ws/ramblings/be-ready-for-the-new-look-of-my-blog</link>
		<comments>http://www.johnmartin.ws/ramblings/be-ready-for-the-new-look-of-my-blog#comments</comments>
		<pubDate>Fri, 30 Jul 2010 08:04:10 +0000</pubDate>
		<dc:creator>JM</dc:creator>
				<category><![CDATA[Random Ramblings]]></category>

		<guid isPermaLink="false">http://www.johnmartin.ws/?p=42</guid>
		<description><![CDATA[Hi its been awhile since I develop for WordPress. Now I will focus on developing WordPress plugins and themes. Keep checking&#8230; I will post great plugins here for fellow wordpress users to use. but right now I have to finish my WordPress them first hopefully by tomorrow its done. Cheers!]]></description>
			<content:encoded><![CDATA[<p>Hi its been awhile since I develop for WordPress. Now I will focus on developing WordPress plugins and themes. Keep checking&#8230;</p>
<p>I will post great plugins here for fellow wordpress users to use.</p>
<p>but right now I have to finish my WordPress them first hopefully by tomorrow its done.</p>
<p>Cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.johnmartin.ws/ramblings/be-ready-for-the-new-look-of-my-blog/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 eyed Manster &#8211; a concept design</title>
		<link>http://www.johnmartin.ws/graphic-designs/3-eyed-manster-a-concept-design</link>
		<comments>http://www.johnmartin.ws/graphic-designs/3-eyed-manster-a-concept-design#comments</comments>
		<pubDate>Sat, 03 Jul 2010 11:16:16 +0000</pubDate>
		<dc:creator>JM</dc:creator>
				<category><![CDATA[Designs]]></category>

		<guid isPermaLink="false">http://www.johnmartin.ws/arts/3-eyed-manster-a-concept-design</guid>
		<description><![CDATA[Title: Three Eyed Mansters Artwork design by: John Martin “JM” R. Disuanco Design color : Black on Avocado Green Format : converted to Raster Graphics(PNG) from Vector(SVG)]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.johnmartin.ws/wp-content/uploads/2010/07/g2832.png"><img style="display: inline; border-width: 0px;" title="g2832" src="http://www.johnmartin.ws/wp-content/uploads/2010/07/g2832_thumb.png" border="0" alt="g2832" width="560" height="560" /></a></p>
<p>Title: Three Eyed Mansters<br />
Artwork design by: John Martin “JM” R. Disuanco<br />
Design color : Black on Avocado Green<br />
Format : converted to Raster Graphics(PNG) from Vector(SVG)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.johnmartin.ws/graphic-designs/3-eyed-manster-a-concept-design/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just Finished Yet another PHP Script Project</title>
		<link>http://www.johnmartin.ws/portfolio/just-finished-yet-another-php-script-project</link>
		<comments>http://www.johnmartin.ws/portfolio/just-finished-yet-another-php-script-project#comments</comments>
		<pubDate>Sat, 03 Jul 2010 11:13:08 +0000</pubDate>
		<dc:creator>JM</dc:creator>
				<category><![CDATA[PHP Scripts]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.johnmartin.ws/portfolio/just-finished-yet-another-php-script-project</guid>
		<description><![CDATA[Project name : Simple Mailing list PHP script&#160;&#160; Project Type : Web Development [PHP Script] Description : a simple mailing list script that will allow website visitor to subscribe for the website’s Newsletter. and for the Admin to view the subscriber and export then to their newsletter sender. Status : Done Demo:]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.johnmartin.ws/wp-content/uploads/2010/07/php_script_done.png"><img title="php_script_done" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="556" alt="php_script_done" src="http://www.johnmartin.ws/wp-content/uploads/2010/07/php_script_done_thumb.png" width="556" border="0" /></a> </p>
<p>Project name : Simple Mailing list PHP script&#160;&#160; <br />Project Type : Web Development [PHP Script]     <br />Description : a simple mailing list script that will allow website visitor to subscribe for the website’s Newsletter. and for the Admin to view the subscriber and export then to their newsletter sender.     <br />Status : Done     <br />Demo:     </p>
]]></content:encoded>
			<wfw:commentRss>http://www.johnmartin.ws/portfolio/just-finished-yet-another-php-script-project/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smiley Bomb Squad</title>
		<link>http://www.johnmartin.ws/graphic-designs/smiley-bomb-squad</link>
		<comments>http://www.johnmartin.ws/graphic-designs/smiley-bomb-squad#comments</comments>
		<pubDate>Sat, 03 Jul 2010 11:10:01 +0000</pubDate>
		<dc:creator>JM</dc:creator>
				<category><![CDATA[Designs]]></category>
		<category><![CDATA[free bomb]]></category>
		<category><![CDATA[free smiley]]></category>
		<category><![CDATA[png]]></category>
		<category><![CDATA[smiley]]></category>

		<guid isPermaLink="false">http://www.johnmartin.ws/arts/smiley-bomb-squad</guid>
		<description><![CDATA[Graphic format: PNG image Package content : 6 Smiley bomb]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.johnmartin.ws/wp-content/uploads/2010/07/screenshot.jpg"><img style="display: inline; border-width: 0px;" title="screenshot" src="http://www.johnmartin.ws/wp-content/uploads/2010/07/screenshot_thumb.jpg" border="0" alt="screenshot" width="556" height="512" /></a></p>
<p>Graphic format: PNG image<br />
Package content : 6 Smiley bomb</p>
]]></content:encoded>
			<wfw:commentRss>http://www.johnmartin.ws/graphic-designs/smiley-bomb-squad/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy 2010 everyone!</title>
		<link>http://www.johnmartin.ws/ramblings/happy-2010-everyone</link>
		<comments>http://www.johnmartin.ws/ramblings/happy-2010-everyone#comments</comments>
		<pubDate>Thu, 31 Dec 2009 07:01:21 +0000</pubDate>
		<dc:creator>JM</dc:creator>
				<category><![CDATA[Random Ramblings]]></category>
		<category><![CDATA[doodle]]></category>

		<guid isPermaLink="false">http://www.johnmartin.ws/?p=25</guid>
		<description><![CDATA[Happy 2010! wishing you a prosperous year!]]></description>
			<content:encoded><![CDATA[<div id="attachment_27" class="wp-caption aligncenter" style="width: 609px"><a href="http://www.johnmartin.ws/wp-content/uploads/2009/12/doodle_no4-20101.png"><img class="size-full wp-image-27" title="doodle_no4-2010" src="http://www.johnmartin.ws/wp-content/uploads/2009/12/doodle_no4-20101.png" alt="Happy 2010 everyone" width="599" height="400" /></a><p class="wp-caption-text">Wishing you a prosperous 2010!</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.johnmartin.ws/ramblings/happy-2010-everyone/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A cup of coffee moments&#8230;</title>
		<link>http://www.johnmartin.ws/ramblings/a-cup-of-coffee-moments</link>
		<comments>http://www.johnmartin.ws/ramblings/a-cup-of-coffee-moments#comments</comments>
		<pubDate>Wed, 30 Dec 2009 01:51:44 +0000</pubDate>
		<dc:creator>JM</dc:creator>
				<category><![CDATA[Designs]]></category>
		<category><![CDATA[Random Ramblings]]></category>
		<category><![CDATA[doodle]]></category>
		<category><![CDATA[coffee]]></category>
		<category><![CDATA[coffee cup]]></category>
		<category><![CDATA[cup]]></category>
		<category><![CDATA[moment]]></category>

		<guid isPermaLink="false">http://www.johnmartin.ws/?p=20</guid>
		<description><![CDATA[A cup of coffee can  create a wonderful moment.
Coffee anyone?]]></description>
			<content:encoded><![CDATA[<div id="attachment_23" class="wp-caption aligncenter" style="width: 609px"><a href="http://www.johnmartin.ws/wp-content/uploads/2009/12/doodle_no3-Coffeecup1.png"><img class="size-full wp-image-23" title="doodle_no3-Coffeecup" src="http://www.johnmartin.ws/wp-content/uploads/2009/12/doodle_no3-Coffeecup1.png" alt="The Coffee Cup" width="599" height="400" /></a><p class="wp-caption-text">The coffee Cup</p></div>
<p>A cup of coffee can  create a wonderful moment.<br />
Coffee anyone?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.johnmartin.ws/ramblings/a-cup-of-coffee-moments/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>freedom exists because of this bars</title>
		<link>http://www.johnmartin.ws/ramblings/freedom-exists-because-of-this-bars</link>
		<comments>http://www.johnmartin.ws/ramblings/freedom-exists-because-of-this-bars#comments</comments>
		<pubDate>Wed, 30 Dec 2009 01:29:20 +0000</pubDate>
		<dc:creator>JM</dc:creator>
				<category><![CDATA[Designs]]></category>
		<category><![CDATA[Random Ramblings]]></category>
		<category><![CDATA[doodle]]></category>
		<category><![CDATA[bars]]></category>
		<category><![CDATA[cage]]></category>
		<category><![CDATA[cageman]]></category>
		<category><![CDATA[freedom]]></category>
		<category><![CDATA[man]]></category>
		<category><![CDATA[prisoner]]></category>

		<guid isPermaLink="false">http://www.johnmartin.ws/?p=17</guid>
		<description><![CDATA[Freedom are experienced because of barriers.
Everyone has his own freedom ideal.
What is your freedom ideal?]]></description>
			<content:encoded><![CDATA[<div id="attachment_18" class="wp-caption aligncenter" style="width: 609px"><a href="http://www.johnmartin.ws/wp-content/uploads/2009/12/doodle_no2-Cage.png"><img class="size-full wp-image-18" title="doodle_no2-Cage" src="http://www.johnmartin.ws/wp-content/uploads/2009/12/doodle_no2-Cage.png" alt="The Cageman" width="599" height="400" /></a><p class="wp-caption-text">Cageman</p></div>
<p>Freedom are experienced because of barriers.<br />
Everyone has his own freedom ideal.<br />
What is your freedom ideal?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.johnmartin.ws/ramblings/freedom-exists-because-of-this-bars/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
