<?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>D Ness Car Key</title>
	<atom:link href="http://dineshkarki.com.np/feed" rel="self" type="application/rss+xml" />
	<link>http://dineshkarki.com.np</link>
	<description></description>
	<lastBuildDate>Thu, 13 Oct 2011 04:00:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<meta xmlns="http://www.w3.org/1999/xhtml" name="robots" content="noindex,follow" />
		<item>
		<title>Exclude Page From WordPress Search</title>
		<link>http://dineshkarki.com.np/exclude-page-from-wordpress-search.html</link>
		<comments>http://dineshkarki.com.np/exclude-page-from-wordpress-search.html#comments</comments>
		<pubDate>Thu, 13 Oct 2011 03:56:40 +0000</pubDate>
		<dc:creator>Dinesh</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://dineshkarki.com.np/?p=99</guid>
		<description><![CDATA[WordPress, by default search for post and pages. How ever you can add a filter to exclude page or post to make you search result effective. Open your functions.php from your active theme and use the following Code. function SearchFilter($query) { if ($query->is_search) { $query->set('post_type', 'post'); // Displays only post. Change it to 'pages' for [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress, by default search for post and pages. How ever you can add a filter to exclude page or post to make you search result effective.</p>
<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-5710024120086688";
/* Link Units */
google_ad_slot = "1878995407";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>Open your functions.php from your active theme and use the following Code.</p>
<pre><code>
function SearchFilter($query) {
if ($query->is_search) {
$query->set('post_type', 'post'); // Displays only post. Change it to 'pages' for pages.
}
return $query;
}

add_filter('pre_get_posts','SearchFilter');

</code></pre>
<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-5710024120086688";
/* Link Units */
google_ad_slot = "1878995407";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://dineshkarki.com.np/exclude-page-from-wordpress-search.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add widgets from shortcode in post/page</title>
		<link>http://dineshkarki.com.np/add-widgets-from-shortcode-in-post-page.html</link>
		<comments>http://dineshkarki.com.np/add-widgets-from-shortcode-in-post-page.html#comments</comments>
		<pubDate>Tue, 03 May 2011 10:22:20 +0000</pubDate>
		<dc:creator>Dinesh</dc:creator>
				<category><![CDATA[Web Developement]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[shortocode]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://dineshkarki.com.np/?p=89</guid>
		<description><![CDATA[WordPress Widgets can be easily customized and used in your theme using dynamic_sidebar(&#8216;WIDGET NAME&#8217;) function. But when the time comes to use it in page or post it is not that easy. As the page and post only accepts shortcodes,  you need to write a shortcode which will get contains from widgets. Below you can see [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress Widgets can be easily customized and used in your theme using <em>dynamic_sidebar(&#8216;WIDGET NAME&#8217;) </em>function. But when the time comes to use it in page or post it is not that easy. As the page and post only accepts shortcodes,  you need to write a shortcode which will get contains from widgets. Below you can see steps to call widgets from shortcode.</p>
<p><strong>1. Register A Sidebar</strong></p>
<pre><code>
register_sidebar(array(
'name'			=&gt; 'My Sidebar',
'before_widget' =&gt; '',
'after_widget' =&gt; '',
'before_title' =&gt; '',
'after_title' =&gt; '',
));
</code></pre>
<p><strong>2. Create a function to read sidebar</strong></p>
<pre><code>
function get_my_sidebar($output) {
ob_start();
dynamic_sidebar('My Sidebar');
$output = ob_get_contents();
ob_end_clean();
return $output;
</code></pre>
<p><strong>3. Create Shortcode</strong></p>
<pre><code>
add_shortcode('sidebar_shortcode','get_my_sidebar');
</code></pre>
<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-5710024120086688";
/* Link Units */
google_ad_slot = "1878995407";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><strong>4. Use it</strong><br />
Use</p>
<pre><code>
[sidebar_shortcode]
</code></pre>
<p> in post/page to get the widgets assigned in sidebar.</p>
<p><strong>Note</strong><br />
Use these codes in functions.php of your active theme.</p>
]]></content:encoded>
			<wfw:commentRss>http://dineshkarki.com.np/add-widgets-from-shortcode-in-post-page.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use any font without image?</title>
		<link>http://dineshkarki.com.np/how-to-use-any-font-without-image.html</link>
		<comments>http://dineshkarki.com.np/how-to-use-any-font-without-image.html#comments</comments>
		<pubDate>Tue, 03 May 2011 04:25:49 +0000</pubDate>
		<dc:creator>Dinesh</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[Web Developement]]></category>

		<guid isPermaLink="false">http://dineshkarki.com.np/?p=74</guid>
		<description><![CDATA[We always wanted to use custom fonts in web pages. But due to the limitation of fonts in visitors system. We were compelled to use certain fonts. But now you can generate your font files and use it in your web. Follow the following steps to use custom fonts in your webpage. 1. Convert your [...]]]></description>
			<content:encoded><![CDATA[<p>We always wanted to use custom fonts in web pages. But due to the limitation of fonts in visitors system. We were compelled to use certain fonts. But now you can generate your font files and use it in your web.</p>
<p>Follow the following steps to use custom fonts in your webpage.</p>
<p><strong>1. Convert your font to js<br />
</strong>Convert your font to js readable from <a href="http://cufon.shoqolate.com/generate/" target="_blank">http://cufon.shoqolate.com/generate/.</a></p>
<p><strong>2. Download cufon.js<br />
</strong>Download cufon.js from <a href="http://cufon.shoqolate.com" target="_blank">http://cufon.shoqolate.com</a></p>
<p><strong>3. Embed<br />
</strong> Embed cufon.js and your font js file to your web</p>
<p><strong>4. Specify Elements to transform</strong></p>
<pre><code>Cufon.replace('h1');</code></pre>
<p><strong>5. Demo</strong></p>
<p><strong><a href="http://www.dineshkarki.com.np/demos/fonts/" target="_blank">http://www.dineshkarki.com.np/demos/fonts/</a> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://dineshkarki.com.np/how-to-use-any-font-without-image.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Usefull firefox Add-ons for web development</title>
		<link>http://dineshkarki.com.np/usefull-firefox-add-ons-for-web-development.html</link>
		<comments>http://dineshkarki.com.np/usefull-firefox-add-ons-for-web-development.html#comments</comments>
		<pubDate>Tue, 03 May 2011 03:53:10 +0000</pubDate>
		<dc:creator>Dinesh</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Web Developement]]></category>
		<category><![CDATA[addons]]></category>

		<guid isPermaLink="false">http://dineshkarki.com.np/?p=70</guid>
		<description><![CDATA[Here is the list of Firefox add-ons which will help you in the web development. 1. Firebug With this addon you can edit, debug, inspect your html elements, css, javascript, ajax request/response. 2. MeasureIt Used to drag out a ruler to get the pixel height and width of any element in web page. 3. Modify Headers This addon [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the list of Firefox add-ons which will help you in the web development.</p>
<ul></ul>
<p><strong>1. Firebug<br />
</strong>With this addon you can edit, debug, inspect your html elements, css, javascript, ajax request/response.</p>
<p><strong>2. MeasureIt<br />
</strong>Used to drag out a ruler to get the pixel height and width of any element in web page.</p>
<p><strong>3. Modify Headers<br />
</strong>This addon gives feature to add, modify, filter you HTTP request headers. Widely Used for the web service development for smart phones.</p>
<p><strong>4. Fireshot<br />
</strong>Adds ability to take screenshot of entire/portion of webpage. You can edit your screenshot with annotation tools for text, highlights etc.</p>
<p><strong>5. Dummy Lipsum<br />
</strong>Generates Lorem Ipsum dummy text. You can specify the number of paragraphs and words to generate.</p>
<p><strong>6.  ColorZilla<br />
</strong>Provides eyedropper and color picker to get the color reading from any point of the web.</p>
<p>These are the addons that i am using for the web development. If you have more&#8230; Share It.</p>
<p><strong>How to install addons in firefox?</strong></p>
<ol>
<li>Go to Tools -&gt; Add-Ons</li>
<li>Click on Get Add ons tab</li>
<li>Search Addons</li>
<li>Click on <strong>Add To Firefox</strong></li>
</ol>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p>&nbsp;</p>
<p><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://dineshkarki.com.np/usefull-firefox-add-ons-for-web-development.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Skype Button to you web</title>
		<link>http://dineshkarki.com.np/add-skype-button-to-you-web.html</link>
		<comments>http://dineshkarki.com.np/add-skype-button-to-you-web.html#comments</comments>
		<pubDate>Tue, 19 Apr 2011 13:38:42 +0000</pubDate>
		<dc:creator>Dinesh</dc:creator>
				<category><![CDATA[Skype]]></category>
		<category><![CDATA[live chat]]></category>
		<category><![CDATA[skype]]></category>

		<guid isPermaLink="false">http://dineshkarki.com.np/?p=62</guid>
		<description><![CDATA[Do you want to use skype button in your webpage to notify your skype status? You can get your skype button and embed in your webpage. Follow the link below to get your skype button. http://www.skype.com/intl/en-gb/tell-a-friend/wizard/ OR http://www.skype.com/intl/en/tell-a-friend/get-a-skype-button/ Note Make sure you have enabled Allow my online status to be shown in web under Tools -&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>Do you want to use skype button in your webpage to notify your skype status? You can get your skype button and embed in your webpage. Follow the link below to get your skype button.</p>
<p><a href="http://www.skype.com/intl/en-gb/tell-a-friend/wizard/" target="_blank">http://www.skype.com/intl/en-gb/tell-a-friend/wizard/</a></p>
<p>OR</p>
<p><a href="http://www.skype.com/intl/en/tell-a-friend/get-a-skype-button/" target="_blank">http://www.skype.com/intl/en/tell-a-friend/get-a-skype-button/</a></p>
<p><strong>Note<br />
</strong>Make sure you have enabled <em>Allow my online status to be shown in web </em>under Tools -&gt; Options -&gt; Privacy Settings</p>
<p><strong>Demo</strong><br />
<script src="http://download.skype.com/share/skypebuttons/js/skypeCheck.js" type="text/javascript"></script><br />
<a href="skype:dinesh.wework4web?chat"><img style="border: none;" src="http://mystatus.skype.com/balloon/dinesh%2Ewework4web" alt="My status" width="150" height="60" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://dineshkarki.com.np/add-skype-button-to-you-web.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

