<?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>Nisi's work blog &#187; theme</title>
	<atom:link href="http://wiki.nisi.ro/tag/theme/feed/" rel="self" type="application/rss+xml" />
	<link>http://wiki.nisi.ro</link>
	<description>Nisi's work blog - programing tips</description>
	<lastBuildDate>Mon, 21 Nov 2011 08:43:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Getting phpDocumentor to work</title>
		<link>http://wiki.nisi.ro/2010/11/getting-phpdocumentor-to-work/</link>
		<comments>http://wiki.nisi.ro/2010/11/getting-phpdocumentor-to-work/#comments</comments>
		<pubDate>Thu, 25 Nov 2010 14:39:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP & MySQL]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[phpdoc]]></category>
		<category><![CDATA[phpdocumentor]]></category>
		<category><![CDATA[smarty]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[tpl]]></category>

		<guid isPermaLink="false">http://wiki.nisi.ro/?p=320</guid>
		<description><![CDATA[Today I needed phpDocumentor to work but after install surprinse !!! Is not working. In every documentation generated by phpdoc a Smarty error is present: Warning: Smarty error: unable to read resource: &#8220;pkgelementindex.tpl&#8221; in &#8230; or Warning: Smarty error: unable to read resource: &#8220;top_frame.tpl&#8221; in &#8230; or &#8230; So after hours of code debbuging I found that [...]]]></description>
			<content:encoded><![CDATA[<p>Today I needed phpDocumentor to work but after install surprinse !!! Is not working. In every documentation generated by phpdoc a Smarty error is present:</p>
<ul>
<li><strong>Warning:</strong> Smarty error: unable to read resource: &#8220;pkgelementindex.tpl&#8221; in &#8230;</li>
</ul>
<p>or</p>
<ul>
<li><strong>Warning</strong>:  Smarty error: unable to read resource: &#8220;top_frame.tpl&#8221; in &#8230;</li>
</ul>
<p>or &#8230;</p>
<p>So after hours of code debbuging I found that all files witch should be with .tpl extension in templates folders were with .tp extension.</p>
<p>You can find the template folder here: <em>yourphpdoc_folder/phpDocumentor/Converters/HTML/frames/templates</em></p>
<p>To make the templates to work just go in each theme folder find files with .tp extension and rename them to .tpl extension.</p>
]]></content:encoded>
			<wfw:commentRss>http://wiki.nisi.ro/2010/11/getting-phpdocumentor-to-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get current theme path in WordPress</title>
		<link>http://wiki.nisi.ro/2010/10/get-current-theme-path-in-wordpress/</link>
		<comments>http://wiki.nisi.ro/2010/10/get-current-theme-path-in-wordpress/#comments</comments>
		<pubDate>Thu, 28 Oct 2010 08:26:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[bloginfo]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[template_directory]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpressm TEMPLATEPATH]]></category>

		<guid isPermaLink="false">http://wiki.nisi.ro/?p=311</guid>
		<description><![CDATA[Sometime when you use WordPress API for a plugin or a theme you need the current template path. This is can be tricky because sometime users change the template folder name. If you hard code the path in to your code like this /wp-content/themes/your_theme after renaming your_theme to your_theme2 all hard coded paths are broken. [...]]]></description>
			<content:encoded><![CDATA[<p>Sometime when you use WordPress API for a plugin or a theme you need the current template path. This is can be tricky because sometime users change the template folder name. If you hard code the path in to your code like this <em>/wp-content/themes/your_theme</em> after renaming <em>your_theme</em> to <em>your_theme2</em> all hard coded paths are broken.<br />
So you have to ask WordPress framework where is your theme path.</p>
<p>If you need Current theme path relative on document something like this:<br />
<em>D:\Work\wamp\www\step-by-step.ro2/wp-content/themes/NisposaMag</em> then you just have to use const TEMPLATEPATH</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1"><a href="http://www.php.net/echo"><span class="kw3">echo</span></a><span class="br0">&#40;</span>TEMPLATEPATH<span class="br0">&#41;</span>;</div>
</li>
</ol>
</div>
<p>But if you need theme path to use it in a html for referring to a image :<br />
ex. <em>http://localhost/step-by-step.ro2/wp-content/themes/NisposaMag</em><br />
use this:</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1"><span class="re0">$tmplPath</span> = bloginfo<span class="br0">&#40;</span><span class="st0">&#8216;template_directory&#8217;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1"><a href="http://www.php.net/echo"><span class="kw3">echo</span></a><span class="br0">&#40;</span><span class="re0">$tmplPath</span><span class="br0">&#41;</span>;</div>
</li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://wiki.nisi.ro/2010/10/get-current-theme-path-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress templates function Cheat Sheet</title>
		<link>http://wiki.nisi.ro/2010/04/wordpress-templates-function-cheat-sheet/</link>
		<comments>http://wiki.nisi.ro/2010/04/wordpress-templates-function-cheat-sheet/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 15:01:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[cheat sheet]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[ekin Ertac]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[megaupload]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wiki.nisi.ro/?p=236</guid>
		<description><![CDATA[If you are a beginner in creating themes for WordPress, or you just need to remind you from time to time wordpress theme related functions, the pdf  &#8220;WordPress Cheat Sheet&#8221; is for you. It contain all functions needed for creating a wp theme like in the preview picture below. PDF was made by Ekin Ertaç [...]]]></description>
			<content:encoded><![CDATA[<p>If you are a beginner in creating themes for WordPress, or you just need to remind you from time to time wordpress theme related functions, the pdf  &#8220;<a href="http://www.megaupload.com/?d=VJZ1OWVM" target="_blank">WordPress Cheat Sheet</a>&#8221; is for you. It contain all functions needed for creating a wp theme like in the preview picture below.</p>
<p><img class="alignnone" title="Wordpress cheat sheet" src="http://img402.imageshack.us/img402/9453/wpthemefunctionscheatsh.jpg" alt="" width="571" height="350" /></p>
<p>PDF was made by <strong>Ekin Ertaç</strong> and can be downloaded for free from the <a href="http://ekinertac.com/?p=259" target="_blank">http://ekinertac.com/?p=259</a> webpage or from Uploading.com by <a href="http://uploading.com/files/ad5922a4/Wordpress-Cheat-Sheet.pdf/" target="_blank">clicking here</a>.</p>
<p>Source: <a href="http://ekinertac.com/?p=259" target="_blank">http://ekinertac.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wiki.nisi.ro/2010/04/wordpress-templates-function-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PSD to wordpress theme &#8211; free plugin for Adobe Photoshop</title>
		<link>http://wiki.nisi.ro/2009/09/psd-to-wordpress-theme-free-plugin-for-adobe-photoshop/</link>
		<comments>http://wiki.nisi.ro/2009/09/psd-to-wordpress-theme-free-plugin-for-adobe-photoshop/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 16:12:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Graphics & CSS]]></category>
		<category><![CDATA[adobe photoshop]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[divine]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[psd]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wiki.nisi.ro/?p=150</guid>
		<description><![CDATA[Divine Plugin for Adobe Photoshop is realy divine. It take a PSD image (template) and make from it a wordpress theme. Features: Convert PSD to HTML HTML page identical to your PSD design Clean standard compliant HTML-CSS layout No HTML, CSS or programming knowledge required WordPress themes Easy publishing from Photoshop® to your WordPress™ website [...]]]></description>
			<content:encoded><![CDATA[<p>Divine Plugin for Adobe Photoshop is realy divine. It take a PSD image (template) and make from it a wordpress theme.</p>
<p><a href="http://www.divine-project.com/"><img class="alignnone" title="Divine Logo" src="http://img269.imageshack.us/img269/8964/divinelogo.jpg" alt="" width="226" height="54" /></a></p>
<p>Features:</p>
<p><strong>Convert PSD to HTML</strong></p>
<ul>
<li>HTML page identical to your PSD design</li>
<li>Clean standard compliant HTML-CSS layout</li>
<li>No HTML, CSS or programming knowledge required</li>
</ul>
<p><strong>WordPress themes</strong></p>
<ul>
<li>Easy publishing from Photoshop® to your WordPress™ website</li>
<li>Built in FTP-client</li>
<li>Widget ready WordPress theme as output</li>
<li>Generate unlimited WordPress themes</li>
</ul>
<p><strong>Browser compatibility</strong></p>
<ul>
<li>Resulting HTML/PHP code is div-based</li>
<li>Cross browser HTML / CSS code</li>
<li>Encoding support</li>
</ul>
<p><img class="alignnone" title="Divine Print Screen" src="http://img32.imageshack.us/img32/4235/divineprintscreen.jpg" alt="" width="372" height="284" /></p>
<p>buy Adobe photoshop:</p>
<ul>
<li><a href="http://www.amazon.com/gp/product/B001HBJ65Q?ie=UTF8&amp;tag=nisbl0a-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B001HBJ65Q">Adobe Photoshop Extended CS4 Student Edition</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=nisbl0a-20&amp;l=as2&amp;o=1&amp;a=B001HBJ65Q" border="0" alt="" width="1" height="1" /></li>
<li><a href="http://www.amazon.com/gp/product/B001EUBSL0?ie=UTF8&amp;tag=nisbl0a-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B001EUBSL0">Adobe Photoshop CS4</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=nisbl0a-20&amp;l=as2&amp;o=1&amp;a=B001EUBSL0" border="0" alt="" width="1" height="1" /></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://wiki.nisi.ro/2009/09/psd-to-wordpress-theme-free-plugin-for-adobe-photoshop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Best and free WordPress theme collection ever</title>
		<link>http://wiki.nisi.ro/2009/04/best-and-free-wordpress-theme-collection-ever/</link>
		<comments>http://wiki.nisi.ro/2009/04/best-and-free-wordpress-theme-collection-ever/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 12:54:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[collection]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wiki.nisi.ro/?p=53</guid>
		<description><![CDATA[Looking for wordpress themes (free ones) I found this site where you can find one of the best wordpress theme collections ever. http://topwpthemes.com/]]></description>
			<content:encoded><![CDATA[<p>Looking for wordpress themes (free ones) I found this site where you can find one of the best wordpress theme collections ever.</p>
<p><a href="http://topwpthemes.com/" target="_blank">http://topwpthemes.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wiki.nisi.ro/2009/04/best-and-free-wordpress-theme-collection-ever/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

