<?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>Divine Developer</title>
	<atom:link href="http://www.divinedeveloper.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.divinedeveloper.com</link>
	<description>WordPress Themes, Premium WordPress Themes, Free WordPress Themes</description>
	<lastBuildDate>Wed, 08 May 2013 06:19:16 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Better WordPress Popular Posts</title>
		<link>http://www.divinedeveloper.com/better-wordpress-popular-posts/</link>
		<comments>http://www.divinedeveloper.com/better-wordpress-popular-posts/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 07:06:56 +0000</pubDate>
		<dc:creator>Mladjo</dc:creator>
				<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://www.divinedeveloper.com/?p=276</guid>
		<description><![CDATA[<p>Better WordPress Popular Posts by Commets Count Without SQL Query A list of the popular posts of the blog is a standard feature in many wordpress blogs. There are quite a few wordpress plugins that offer this feature and it’s &#8230; <a href="http://www.divinedeveloper.com/better-wordpress-popular-posts/">Continued</a></p><p>The post <a href="http://www.divinedeveloper.com/better-wordpress-popular-posts/">Better WordPress Popular Posts</a> appeared first on <a href="http://www.divinedeveloper.com">Divine Developer</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3>Better WordPress Popular Posts  by Commets Count Without SQL Query</h3>
<p>A list of the popular posts of the blog is a standard feature in many wordpress blogs. There are quite a few wordpress plugins that offer this feature and it’s very simple to install a plugin to display your most popular posts.</p>
<p>There a many wordpress hacks out there that advise you how to do it without using a plugin.</p>
<p>The system is the  to direct query wordpress mysql database and sort posts by comment count in order to achieve this. Since WordPress 2.9 there is no need for more direct queries. WordPress 2.9 added  &#8216;<tt>orderby=comment_count</tt>&#8216; argument to <a title="Template Tags/query posts" href="http://codex.wordpress.org/Template_Tags/query_posts">query_posts()</a> which allow us to <a href="http://codex.wordpress.org/Template_Tags/query_posts#Orderby_Parameters">sort retrieved posts by comment count</a>. So if you want to avoid yet another direct sql query  in order  to create a list for your most popular post this is how you can do it:</p>
<p>First  create the function. I named mine  dd_most_popular. Copy the code below and paste it to your functions.php file.</p>
<pre>&lt;?php function dd_most_popular() {

global $post;

 $most_popular = get_posts('numberposts=10&amp;order=DESC&amp;orderby=comment_count'); ?&gt;

 	&lt;ul&gt;

 	&lt;?php foreach($most_popular as $post) :

   	setup_postdata($post);?&gt;

    	&lt;li&gt;&lt;a href="&lt;?php the_permalink(); ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;

  	&lt;?php endforeach; ?&gt;

 	&lt;/ul&gt;

&lt;?php }?&gt;
</pre>
<p>Now, wherever you want to display the popular posts list, place the following code. You can do it in the sidebar or other wordpress theme files.</p>
<pre>&lt;?php dd_most_popular(); ?&gt;
</pre>
<p><strong>Stay updated I may write a plugin!</strong></p>
<p>The post <a href="http://www.divinedeveloper.com/better-wordpress-popular-posts/">Better WordPress Popular Posts</a> appeared first on <a href="http://www.divinedeveloper.com">Divine Developer</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.divinedeveloper.com/better-wordpress-popular-posts/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>DD Page Widget 0.1</title>
		<link>http://www.divinedeveloper.com/dd-page-widget-0-1/</link>
		<comments>http://www.divinedeveloper.com/dd-page-widget-0-1/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 07:51:57 +0000</pubDate>
		<dc:creator>Mladjo</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://www.divinedeveloper.com/?p=243</guid>
		<description><![CDATA[<p>This is the first release of DD Page Widget. This widget outputs single page with thumbnail (wordpress 2.9 feature) and page excerpt on any widgetized area. It has options to choose page which you would like to feature, to replace &#8230; <a href="http://www.divinedeveloper.com/dd-page-widget-0-1/">Continued</a></p><p>The post <a href="http://www.divinedeveloper.com/dd-page-widget-0-1/">DD Page Widget 0.1</a> appeared first on <a href="http://www.divinedeveloper.com">Divine Developer</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>This is the first release of DD Page Widget. This widget outputs single page with thumbnail (wordpress 2.9 feature) and page excerpt on any widgetized area. It has options to choose page which you would like to feature, to replace page title with custom one, to show or not page excerpt and page thumbnail and to set excerpt length and  thumbnail dimensions.</p>
<p>The widget has been written out of need for that functionality in my upcoming wordpress theme. After looking for plugins to do what I wanted, I found a couple of plugins that had components of what I wanted, but nothing that had everything. So I decided to write my own. Anyway I must give credits to this fantastic widget <a href="http://jameslao.com/2009/12/30/category-posts-widget-3-0/">Category Posts Widget 3.0</a>.</p>
<p>It was also an opportunity for me to learn the new method now a part of WordPress 2.8, that involves extending the standard widget class and some of its functions. (See the<a href="http://codex.wordpress.org/Widgets_API#Developing_Widgets_on_2.8.2B"> wordpress widget api – developing widgets on 2.8+</a>.)</p>
<p>Because if follows the new widget API, it is a multi-widget, meaning it can be used in multiple widgetized areas, or even multiple times in the same widgetized area.</p>
<p>I would like to hear any thoughts for future directions, improvements and any wisdom you may want to share.</p>
<h3>Installation</h3>
<ol>
<li>Unzip the dd_page_widget.zip file.</li>
<li>Upload the dd_page_widget folder to the /wp-content/plugins/ directory. </li>
<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress.</li>
<li>In the &#8216;Widgets&#8217; panel you should see DD Page Widget </li>
<li>Drag and Drop that widget into any widgetized area.</li>
<li>Configure the widget with the options available.</li>
</ol>
<p>DD Page Widget can be downloaded from here <a class="more-link" href="http://wordpress.org/extend/plugins/dd-page-widget/">Download</a></p>
<p><a href="http://www.divinedeveloper.com/wp-content/uploads/dd_page_widget1.png"><img class="aligncenter size-full wp-image-254" title="DD Page Widget WordPress" src="http://www.divinedeveloper.com/wp-content/uploads/dd_page_widget1.png" alt="DD Page Widget WordPress" width="334" height="310" /></a></p>
<p>The post <a href="http://www.divinedeveloper.com/dd-page-widget-0-1/">DD Page Widget 0.1</a> appeared first on <a href="http://www.divinedeveloper.com">Divine Developer</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.divinedeveloper.com/dd-page-widget-0-1/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>LetterPress &#8211; WordPress Theme with CMS Features</title>
		<link>http://www.divinedeveloper.com/letterpress-wordpress-theme-with-cms-features/</link>
		<comments>http://www.divinedeveloper.com/letterpress-wordpress-theme-with-cms-features/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 04:54:16 +0000</pubDate>
		<dc:creator>Mladjo</dc:creator>
				<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://www.divinedeveloper.com/?p=224</guid>
		<description><![CDATA[<p>LetterPress is highly customizable WordPress Theme with CMS Features which can be either used as Blog / Portfolio or full blown Multi-author Magazine / Newspaper / Community site able to handle loads of content. The theme comes with 5 widgets: &#8230; <a href="http://www.divinedeveloper.com/letterpress-wordpress-theme-with-cms-features/">Continued</a></p><p>The post <a href="http://www.divinedeveloper.com/letterpress-wordpress-theme-with-cms-features/">LetterPress &#8211; WordPress Theme with CMS Features</a> appeared first on <a href="http://www.divinedeveloper.com">Divine Developer</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>LetterPress is highly customizable WordPress Theme with CMS Features which can be either used as Blog / Portfolio  or full blown Multi-author Magazine / Newspaper / Community site able to handle loads of content. </p>
<p><strong>The theme comes with 5 widgets:</strong></p>
<ul>
<li>&#8220;Author Info&#8221; which displays the author info in single post pages.</li>
<li>&#8220;Find Me!&#8221; shows icons for your social network sites that linkback to your social networking profiles</li>
<li>&#8220;Most Popular Posts&#8221; shows unordered list of most popular posts on your site according to the number of comments.
</li>
<li>&#8220;Recent Comments&#8221; improves default wordpress recent comments widget.</li>
<li>&#8220;Subscriptions&#8221; widget which add Feedburner E-mail and RSS subscription options.</li>
</ul>
<p><strong>Three widgetized areas:</strong><br />
Tabber area creates tabbed interface of widgets draged in and two normal areas above and below tabber.</p>
<p><strong>Cufon Font Replacement:</strong><br />
  Cufon Font Replacement for headings. Font used Museo 300 light.
</p>
<p><strong>Three color schemes:</strong><br />
Three predefined color schemes and and a very flexible skinning system that allows you to very fast create your own skins , while keeping the layout intact.
</p>
<p><strong>Flexible navigation:</strong><br />
Easy way to set up main navigation menu from theme options page with possibility to edit the categories and pages that should be part of the main menu and options to show only categories, only pages or mix of both powered by JQuery Superfish drop down menu. </p>
<p><strong>Powerful images and content handling:</strong> <br />
LetterPress gives you opportunity  to automatically generate all the thumbnails and post excerpts for different site areas but enables you to override everything from different post writing panels including support for wordpress 2.9 post thumbnail function. </p>
<p><a href="http://www.divinedeveloper.com/02/04/letterpress-wordpress-theme-with-cms-features/1_banner/" rel="attachment wp-att-230"><img src="http://www.divinedeveloper.com/wp-content/uploads/1_banner1.jpg" alt="" title="1_banner" width="590" height="300" class="aligncenter size-full wp-image-230" /></a></p>
<p><strong>jQuery Cycle and 3D Slider:</strong> <br />
Enable/disable jQuery Cycle or cu3er 3D Slider from theme options page, set default options and then fine tune it from LetterPress custom post panels (upload and remove slides, display text&#8230; ).</p>
<ul>
<li>Working AJAX /PHP Contact form – With jQuery validation.
</li>
<li>Image Gallery Template.
</li>
<li>Full Width Page Template Useful for Galleries or Portfolios.
</li>
<li>PSD files included.
</li>
<li>Custom Logo and favicon integration from theme control panel.
</li>
<li>Installation and Setup Guide.
</li>
<li>Gravatars Support (comments section).
</li>
<li>Developed for Localization.
</li>
<li>Built-In wp-pagenavi plugin.
</li>
<li>Tested in  IE7, IE8 , FireFox, Opera and Google Chrome.
</li>
<li>Optimized for search engines.
</li>
<li>Lots of features, you need to download and try it to see everything!
</li>
</ul>
<p><a class="more-link" href="http://themeforest.net/item/letterpress-wordpress-theme-with-cms-features/82592/?ref=Mladjo">Download</a> / <a class="more-link" href="http://www.letterpress.ws/">Preview</a></p>
<p>The post <a href="http://www.divinedeveloper.com/letterpress-wordpress-theme-with-cms-features/">LetterPress &#8211; WordPress Theme with CMS Features</a> appeared first on <a href="http://www.divinedeveloper.com">Divine Developer</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.divinedeveloper.com/letterpress-wordpress-theme-with-cms-features/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Hemsida Blog Magazine WordPress Theme</title>
		<link>http://www.divinedeveloper.com/hemsida-blog-magazine-wordpress-theme/</link>
		<comments>http://www.divinedeveloper.com/hemsida-blog-magazine-wordpress-theme/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 14:11:35 +0000</pubDate>
		<dc:creator>Mladjo</dc:creator>
				<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://www.divinedeveloper.com/?p=202</guid>
		<description><![CDATA[<p>Month ago I uploaded my first theme Hemsida to ThemeForest and finally find time to write about it. Hemsida is blog magazine premium WordPress theme suitable for any niche. It comes with an integrated theme options page, a comprehensive installation &#8230; <a href="http://www.divinedeveloper.com/hemsida-blog-magazine-wordpress-theme/">Continued</a></p><p>The post <a href="http://www.divinedeveloper.com/hemsida-blog-magazine-wordpress-theme/">Hemsida Blog Magazine WordPress Theme</a> appeared first on <a href="http://www.divinedeveloper.com">Divine Developer</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Month ago I uploaded my first theme <strong>Hemsida</strong> to <a title="ThemeForest" href="http://themeforest.net/?ref=Mladjo">ThemeForest</a> and finally find time to write about it.</p>
<p>Hemsida is blog magazine premium WordPress theme suitable for any niche. It comes with an integrated theme options page, a comprehensive installation guide to help adjust the theme to your liking.  Hemsida has 6 widgetized areas including tabbed area that will automatically create tabbed interface of widgets you drag in.  There is built-in WP-PageNavi and 3 additional widgets: Recent Comments, Most Popular Posts and Social Networks.</p>
<p><img class="aligncenter size-full wp-image-203" title="Hemsida" src="http://www.divinedeveloper.com/wp-content/uploads/hemsida_baner.jpg" alt="Hemsida" width="590" height="300" /></p>
<p><strong>Features</strong></p>
<ul>
<li>Custom theme options page.</li>
<li>6 widget-ready areas.</li>
<li>Tabbed interface widgetized area.</li>
<li>SuperFish for dropdown menu (Both pages and Categories).</li>
<li>3 additional widgets: Recent Comments, Most Popular Posts and Social Networks.</li>
<li>Installation guide</li>
<li>Adsense, banners ready</li>
<li>Gravatars Support (comments section)</li>
<li>Auto thumbnail resizing generator and content limit.</li>
<li>PSD files included.</li>
<li>Developed for Localization.</li>
<li>Built-In wp-pagenavi plugin.</li>
<li>Tested in IE6 , IE7, IE8 , FireFox, Opera and Google Chrome.</li>
<li>Optimized for search engines</li>
<li>Lots of features, you need to download and try it to see everything!</li>
</ul>
<p><strong>Admin Options Features</strong></p>
<ul>
<li>2 alternate styles ready.</li>
<li>Add your own logo image in header</li>
<li>Add your own favicon</li>
<li>A customizable footer text</li>
<li>Banner Ad Management System</li>
<li>Add Google Analytics or other tracking code</li>
</ul>
<p><a class="more-link" href="http://themeforest.net/item/hemsida-blog-magazine-wordpress-theme/73447/?ref=Mladjo">Download</a> / <a class="more-link" href="http://www.hemsida.ws/">Preview</a></p>
<p>The post <a href="http://www.divinedeveloper.com/hemsida-blog-magazine-wordpress-theme/">Hemsida Blog Magazine WordPress Theme</a> appeared first on <a href="http://www.divinedeveloper.com">Divine Developer</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.divinedeveloper.com/hemsida-blog-magazine-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin Content and Image Teaser</title>
		<link>http://www.divinedeveloper.com/wordpress-plugin-content-and-image-teaser/</link>
		<comments>http://www.divinedeveloper.com/wordpress-plugin-content-and-image-teaser/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 19:21:56 +0000</pubDate>
		<dc:creator>Mladjo</dc:creator>
				<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://en.divinedeveloper.com/?p=153</guid>
		<description><![CDATA[<p>This plugin limits content on front or archive page after set number of words, add gettexted more link to the end of it , pull out only wordpress allowed html tags, check if any xhtml tag is unclosed and close &#8230; <a href="http://www.divinedeveloper.com/wordpress-plugin-content-and-image-teaser/">Continued</a></p><p>The post <a href="http://www.divinedeveloper.com/wordpress-plugin-content-and-image-teaser/">WordPress Plugin Content and Image Teaser</a> appeared first on <a href="http://www.divinedeveloper.com">Divine Developer</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>This plugin limits content on front or archive page after set number of words, add gettexted more link to the end of it , pull out only wordpress allowed html tags, check if any xhtml tag is unclosed and close it, take and resize first image from the post.</p>
<p>Current version: 0.1 Initial Public Release</p>
<h4>Downloadit from here:</h4>
<p><a href="http://www.divinedeveloper.com/wp-content/uploads/content-and-image-teaser.zip">content-and-image-teaser</a></p>
<h4>Or from WordPress repository:</h4>
<p><a title="Content and Image Teaser" href="http://wordpress.org/extend/plugins/content-and-image-teaser/">content-and-image-teaser</a></p>
<h4>Installation:</h4>
<p>1. Unzip the content-and-image-teaser.zip file.<br />
2. Upload the content-and-image-teaser folder to the /wp-content/plugins/ directory.<br />
3. Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress.<br />
4. Place following code in your theme (index.php, archive.php) within the loop:</p>
<pre>&lt;?php content(100, __('(more...)')); ?&gt;</pre>
<p>The post <a href="http://www.divinedeveloper.com/wordpress-plugin-content-and-image-teaser/">WordPress Plugin Content and Image Teaser</a> appeared first on <a href="http://www.divinedeveloper.com">Divine Developer</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.divinedeveloper.com/wordpress-plugin-content-and-image-teaser/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Webbdesign 1.1</title>
		<link>http://www.divinedeveloper.com/webbdesign-1-1/</link>
		<comments>http://www.divinedeveloper.com/webbdesign-1-1/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 08:08:46 +0000</pubDate>
		<dc:creator>Mladjo</dc:creator>
				<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://en.divinedeveloper.com/?p=125</guid>
		<description><![CDATA[<p>Free WordPress Theme Webbdesign Releasing updated blue, two-columns, right-sidebar, fixed-width, translation-ready with Superfish Dropdown menu navigation Webbdesign WP Theme. Original Webbdesign by Divine Developer. Released under the GNU General Public License. This means you may use it for any purpose, &#8230; <a href="http://www.divinedeveloper.com/webbdesign-1-1/">Continued</a></p><p>The post <a href="http://www.divinedeveloper.com/webbdesign-1-1/">Webbdesign 1.1</a> appeared first on <a href="http://www.divinedeveloper.com">Divine Developer</a>.</p>]]></description>
				<content:encoded><![CDATA[<h2>Free WordPress Theme Webbdesign</h2>
<p><img class="alignnone size-full wp-image-141" title="screenshoot" src="http://www.divinedeveloper.com/wp-content/uploads/screenshoot1.png" alt="screenshoot" width="300" height="226" /></p>
<p>Releasing updated blue, two-columns, right-sidebar, fixed-width, translation-ready with Superfish Dropdown menu navigation Webbdesign WP Theme. Original <a href="http://www.divinedeveloper.com/">Webbdesign</a> by Divine Developer. Released under the GNU General Public License. This means you may use it for any purpose, and make any changes you like. However I would like if you leave <a href="http://www.divinedeveloper.com/">Webbdesign</a> link to my site under your footer.</p>
<h3>Updates</h3>
<p>2009.09.27 &#8211; Version 1.1</p>
<ul>
<li>changelog.txt &#8211; added changelog and revised version number</li>
<li>2.7 and up compatible</li>
</ul>
<h3>Features</h3>
<ul>
<li>Retro style, two-columns, right-sidebar, fixed-width, Unique design wordpress theme</li>
<li>Widget ready</li>
<li>translation-ready wp theme</li>
<li>Valid XHTML 1.0 Transitional</li>
<li>Superfish Dropdown menu navigation</li>
<li>2.7 an up compatible</li>
<li>SEO Optimized title and meta tags</li>
</ul>
<h3>Installation</h3>
<ul>
<li>Unzip the downloaded file. You&#8217;ll get a folder named &#8220;webbdesign&#8221;</li>
<li>Upload the entire &#8220;webbdesign&#8221; folder to your &#8216;wp-content/themes/&#8221; folder</li>
<li>Login into WordPress admin panel</li>
<li>Click on the &#8220;Appearance&#8221; tab</li>
<li>Click on the &#8220;Webbutveckling&#8221; theme screenshot or activate button</li>
<li>Go to Appearance/ Webbdesign Options</li>
</ul>
<p>See Webbdesignin action or download it from <a href="http://wordpress.org/extend/themes/webbdesign/">WordPress Theme Directory</a>.</p>
<p><strong>Support:</strong> If you find a bug, somethingthat doesn’t working correctly, please let me know in the comments. I would be very happy if those of you who are using the theme on a live site post a link in the comments. I would be also happy if you like Webbdesign theme and by me a beer.</p>
<form action="https://www.paypal.com/cgi-bin/webscr" enctype="application/x-www-form-urlencoded" method="post"><input name="cmd" type="hidden" value="_donations" /> <input name="business" type="hidden" value="QXZZJ83F6PBDQ" /> <input name="lc" type="hidden" value="SE" /> <input name="item_name" type="hidden" value="Divine Developer Webbdesign Theme" /> <input name="item_number" type="hidden" value="Buy me a beer :)" /> <input name="currency_code" type="hidden" value="USD" /> <input name="bn" type="hidden" value="PP-DonationsBF:btn_donate_LG.gif:NonHosted" /> <input alt="PayPal - The safer, easier way to pay online!" name="submit" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" type="image" /> <img src="https://www.paypal.com/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" /><br />
</form>
<p>The post <a href="http://www.divinedeveloper.com/webbdesign-1-1/">Webbdesign 1.1</a> appeared first on <a href="http://www.divinedeveloper.com">Divine Developer</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.divinedeveloper.com/webbdesign-1-1/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Webbutveckling 1.2</title>
		<link>http://www.divinedeveloper.com/webbutveckling-1-2/</link>
		<comments>http://www.divinedeveloper.com/webbutveckling-1-2/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 07:51:50 +0000</pubDate>
		<dc:creator>Mladjo</dc:creator>
				<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://en.divinedeveloper.com/?p=115</guid>
		<description><![CDATA[<p>Free WordPress Theme Webbutveckling I’ve just released a upgrade to Webbutveckling, one of my WordPress themes. It was released some time ago and I haven’t had the chance to give it any attention since then. Webbutveckling wordpress theme is fully &#8230; <a href="http://www.divinedeveloper.com/webbutveckling-1-2/">Continued</a></p><p>The post <a href="http://www.divinedeveloper.com/webbutveckling-1-2/">Webbutveckling 1.2</a> appeared first on <a href="http://www.divinedeveloper.com">Divine Developer</a>.</p>]]></description>
				<content:encoded><![CDATA[<h2>Free WordPress Theme Webbutveckling</h2>
<p>I’ve just released a upgrade to Webbutveckling, one of my WordPress themes. It was released some time ago and I haven’t had the chance to give it any attention since then.<br />
Webbutveckling wordpress theme is fully compatible with WordPress version 2.7 and up. Released under the GNU General Public License. This means you may use it for any purpose, and make any changes you like. However I would like if you leave <a href="http://www.divinedeveloper.com/">Webbutveckling</a> link to my site under your footer. Version: 1.2</p>
<p><img class="size-full wp-image-127" title="screenshot" src="http://www.divinedeveloper.com/wp-content/uploads/screenshot.png" alt="screenshot" width="300" height="225" /></p>
<h3>Updates</h3>
<p>2009.09.22 &#8211; Version 1.2 </p>
<ul>
<li>changelog.txt &#8211; Added changelog and revised version number</li>
<li>built-in wp-pagenavi iplugin</li>
<li>admin panel now with options to change logo and theme style (default blue and red)</li>
<li>sidebar with two widgetized area above and below ui tabs</li>
<li>markup improvements</li>
<li>PSD files included</li>
</ul>
<p>2008.12.29 &#8211; Version 1.1 </p>
<ul>
<li>changelog.txt &#8211; Added changelog and revised version number</li>
<li>added function content limit which limits xxx number of words on posts on front</li>
<li>added admin panel for welcome message</li>
<li>added function which pull first image from posts as a thumbnail on a front page</li>
<li>2.7 compatible</li>
</ul>
<h3>Features</h3>
<ul>
<li>Modern, 2-columns, Unique design wordpress theme</li>
<li>Widget ready</li>
<li>Fully gettext wp theme</li>
<li>Valid XHTML 1.0 Transitional</li>
<li>Gravatars support</li>
<li>JQuery powered tabbed sidebar</li>
<li>Son of Suckerfish Dropdown menu navigation</li>
<li>wp-pagenavi integration</li>
<li>Custom theme options page</li>
<li>Two Color Schemes: Blue (default)and Red</li>
<li>Built-In wp-pagenavi plugin</li>
<li>Tested in IE6 , IE7, IE8 , FireFox, Opera and Google Chrome </li>
<li>Header, Footer, Logo and Main Background PSD files included </li>
<li>2.7 an up compatible</li>
<li>SEO Optimized title and meta tags</li>
</ul>
<h3>Installation</h3>
<ul>
<li> Unzip the downloaded file. You&#8217;ll get a folder named &#8220;webbdesign&#8221;</li>
<li> Upload the entire &#8220;webbdesign&#8221; folder to your &#8216;wp-content/themes/&#8221; folder</li>
<li> Login into WordPress admin panel</li>
<li> Click on the &#8220;Apperance&#8221; tab</li>
<li> Click on the &#8220;Webbutveckling&#8221; theme screenshot or activate button</li>
<li> Go to Appearance/ Webbutveckling Options</li>
<li> Copy url of you logo and choose color scheme</li>
<li> Then just take a look at your blog and hit refresh to see the new theme.</li>
<li>If you want to change number of words that are displayed on posts on front page open index.php file and on line 21 find
<pre>&lt;?php content(100, __('(more...)')); ?&gt;</pre>
<p>Change number 100 with whatever number of words you would like Example:</p>
<pre>&lt;?php content(250, __('(more...)')); ?&gt;</pre>
</li>
</ul>
<p><img class="size-full wp-image-128" title="screenshot red" src="http://www.divinedeveloper.com/wp-content/uploads/screenshot1.png" alt="screenshot red" width="300" height="225" /></p>
<p>See Webbutveckling in action or download it from <a href="http://wordpress.org/extend/themes/webbutveckling">WordPress Theme Directory</a>.</p>
<p><strong>Support:</strong> If you find a bug, somethingthat doesn’t working correctly, please let me know in the comments. I would be very happy if those of you who are using the theme on a live site post a link in the comments. I would be also happy if you like Webbutveckling theme and by me a beer.</p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input name="cmd" type="hidden" value="_donations" /> <input name="business" type="hidden" value="QXZZJ83F6PBDQ" /> <input name="lc" type="hidden" value="SE" /> <input name="item_name" type="hidden" value="Divine Developer Webbutveckling Theme" /> <input name="item_number" type="hidden" value="Buy me a beer :)" /> <input name="currency_code" type="hidden" value="USD" /> <input name="bn" type="hidden" value="PP-DonationsBF:btn_donate_LG.gif:NonHosted" /> <input alt="PayPal - The safer, easier way to pay online!" name="submit" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" type="image" /> <img src="https://www.paypal.com/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" /><br />
</form>
<p>The post <a href="http://www.divinedeveloper.com/webbutveckling-1-2/">Webbutveckling 1.2</a> appeared first on <a href="http://www.divinedeveloper.com">Divine Developer</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.divinedeveloper.com/webbutveckling-1-2/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WordPress Content Limit</title>
		<link>http://www.divinedeveloper.com/wordpress-content-limit/</link>
		<comments>http://www.divinedeveloper.com/wordpress-content-limit/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 18:23:21 +0000</pubDate>
		<dc:creator>Mladjo</dc:creator>
				<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://en.divinedeveloper.com/?p=90</guid>
		<description><![CDATA[<p>Better WordPress Content Limit I decided to update mu WordPress themes Webbutveckling and Webbdesign which I hope I will release in next couple of days when problem concerning content limit in WordPress occur to me. There is possibility to include &#8230; <a href="http://www.divinedeveloper.com/wordpress-content-limit/">Continued</a></p><p>The post <a href="http://www.divinedeveloper.com/wordpress-content-limit/">WordPress Content Limit</a> appeared first on <a href="http://www.divinedeveloper.com">Divine Developer</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3>Better WordPress Content Limit</h3>
<p>I decided to update mu <a href="http://wordpress.org/">WordPress</a> themes <a href="http://wordpress.org/extend/themes/webbutveckling">Webbutveckling</a> and Webbdesign which I hope I will release in next couple of days when problem concerning content limit in WordPress occur to me. There is possibility to include more tag: &lt;!&#8211;more&#8211;&gt; in every post, but what if you have thousands of posts or later want to change place of more tags? You can use the the_excerpt but what if you don’t want to write excerpts?</p>
<p>I search web for solutions and find 3 plugins.</p>
<p>First one <a href="http://labitacora.net/comunBlog/limit-post.phps">http://labitacora.net/comunBlog/limit-post.phps</a> which is basically a function Limits the displayed text length (number of characters)on the index page entries and generates a link to a page to read the full content if it’s bigger than the selected maximum length. Everything fine except that function strips all html tags and put content between&lt;p&gt; and &lt;/p&gt; tag. However it produces valid xhtml against <a href="http://validator.w3.org/">The W3C Markup Validation Service</a>.</p>
<p>Next one &#8211; <a href="http://bavotasan.com/wordpress/free-wordpress-plugins/excerpt-and-content-word-limit-wordpress-plugin/">Excerpt and Content Word Limit</a> &#8211; limits the number of words from posts or excerpts. It even pulls out first image but with actual size and without wordpress align classes. Plugin also takes html tags and that’s its main downfall because it cuts code regardless if tag is open or closed. HTML output is full of errors and even whole layout could break.</p>
<p>Third &#8211; <a href="http://www.jenst.se/2007/12/03/wp-limit-posts-automatically/">WP Limit Posts Automatically</a> – first check if there is a &lt;!&#8211;more&#8211;&gt; tag and if is not limits post by number of letters, words or just take first paragraph by inserting &lt;!&#8211;more&#8211;&gt; tag on specified place. There is same problem as with the plugin above. Leaves unclosed html tags.</p>
<p>I obviously wasn&#8217;t satisfied so I write small piece of code which do the job: limits content after set number of words, add gettexted more link to the endof it , pull out only wordpress allowed html tags, check if any tag is unclosed and closing it. And here it is:</p>
<pre>&lt;?php

////////////////////////////////////////////////////////////////////////////////

// Find and close unclosed xhtml tags

function close_tags($text) {

    $patt_open    = "%((?&lt;!&lt;/)(?&lt;=&lt;)[\s]*[^/!&gt;\s]+(?=&gt;|[\s]+[^&gt;]*[^/]&gt;)(?!/&gt;))%";

    $patt_close    = "%((?&lt;=&lt;/)([^&gt;]+)(?=&gt;))%";

    if (preg_match_all($patt_open,$text,$matches))

    {

        $m_open = $matches[1];

        if(!empty($m_open))

        {

            preg_match_all($patt_close,$text,$matches2);

            $m_close = $matches2[1];

            if (count($m_open) &gt; count($m_close))

            {

                $m_open = array_reverse($m_open);

                foreach ($m_close as $tag) $c_tags[$tag]++;

                foreach ($m_open as $k =&gt; $tag)    if ($c_tags[$tag]--&lt;=0) $text.='&lt;/'.$tag.'&gt;';

            }

        }

    }

    return $text;

}

////////////////////////////////////////////////////////////////////////////////

// Content Limit

	function content($num, $more_link_text = '(more...)') {  

	$theContent = get_the_content($more_link_text);  

	$output = preg_replace('/&lt;img[^&gt;]+./','', $theContent);  

	$limit = $num+1;  

	$content = explode(' ', $output, $limit);  

	array_pop($content);  

	$content = implode(" ",$content);  

    $content = strip_tags($content, '&lt;p&gt;&lt;a&gt;&lt;address&gt;&lt;a&gt;&lt;abbr&gt;&lt;acronym&gt;&lt;b&gt;&lt;big&gt;&lt;blockquote&gt;&lt;br&gt;&lt;caption&gt;&lt;cite&gt;&lt;class&gt;&lt;code&gt;&lt;col&gt;&lt;del&gt;&lt;dd&gt;&lt;div&gt;&lt;dl&gt;&lt;dt&gt;&lt;em&gt;&lt;font&gt;&lt;h1&gt;&lt;h2&gt;&lt;h3&gt;&lt;h4&gt;&lt;h5&gt;&lt;h6&gt;&lt;hr&gt;&lt;i&gt;&lt;img&gt;&lt;ins&gt;&lt;kbd&gt;&lt;li&gt;&lt;ol&gt;&lt;p&gt;&lt;pre&gt;&lt;q&gt;&lt;s&gt;&lt;span&gt;&lt;strike&gt;&lt;strong&gt;&lt;sub&gt;&lt;sup&gt;&lt;table&gt;&lt;tbody&gt;&lt;td&gt;&lt;tfoot&gt;&lt;tr&gt;&lt;tt&gt;&lt;ul&gt;&lt;var&gt;');

      echo close_tags($content);

&#160;&#160;&#160;&#160;&#160;&#160;echo "&lt;p&gt;&lt;a href='";

&#160;&#160;&#160;&#160;&#160;&#160;the_permalink();

&#160;&#160;&#160;&#160;&#160;&#160;echo "'&gt;".$more_link_text."&lt;/a&gt;&lt;/p&gt;";

}?&gt;
</pre>
<h4>How does it works?</h4>
<p>First function function close_tags($text) use php function <a href="http://se2.php.net/preg_match_all">preg_match_all</a> to match all xml/html tags against a pattern, find unclosed ones and close them.<br />
The other one function content($num, $more_link_text = &#8216;(more&#8230;)&#8217;) get the content with the wp build in function <a href="http://codex.wordpress.org/Function_Reference/get_the_content">get_the_content()</a>, strip images, strip html tags except allowed, then calls function close_tags to close them, get the permalink to post with wp <a href="http://codex.wordpress.org/Template_Tags/the_permalink">the_permalink()</a> and that&#8217;s it.</p>
<h4>How to use this?</h4>
<p>Copy the code above and paste it in your themes function.php file</p>
<p>In you theme within the loop find the following code</p>
<pre>&lt;?php the_content(); ?&gt;</pre>
<p>And replace it with</p>
<pre>&lt;?php content(100, __('(more...)')); ?&gt;</pre>
<p>Where &#8217;100&#8242; is the number of words to limit content and &#8216;more&#8230;&#8217; is link to full post. Change &#8217;100&#8242; to whatever number and &#8216;more&#8230;&#8217; to &#8216;Read more&#8217; or whatever</p>
<h5>Comments are allowed and welcomed.</h5>
<p>The post <a href="http://www.divinedeveloper.com/wordpress-content-limit/">WordPress Content Limit</a> appeared first on <a href="http://www.divinedeveloper.com">Divine Developer</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.divinedeveloper.com/wordpress-content-limit/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>Webbutveckling</title>
		<link>http://www.divinedeveloper.com/webbutveckling/</link>
		<comments>http://www.divinedeveloper.com/webbutveckling/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 08:07:24 +0000</pubDate>
		<dc:creator>Mladjo</dc:creator>
				<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://www.divinedeveloper.com/?p=19&#038;langswitch_lang=en</guid>
		<description><![CDATA[<p>Webbutveckling Announcing the release of a new two-column, widget-ready, gravatar-ready, fully gettext WordPress theme called Webbutveckling. Theme is standards compliant with a JQuery powered tabbed sidebar box and Son of Suckerfish Dropdown menu navigation. Webbutveckling wordpress theme is fully compatible &#8230; <a href="http://www.divinedeveloper.com/webbutveckling/">Continued</a></p><p>The post <a href="http://www.divinedeveloper.com/webbutveckling/">Webbutveckling</a> appeared first on <a href="http://www.divinedeveloper.com">Divine Developer</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3>Webbutveckling</h3>
<p>Announcing the release of a new two-column, widget-ready, gravatar-ready, fully gettext WordPress theme called Webbutveckling.  Theme is standards compliant with a JQuery powered tabbed sidebar box and Son of Suckerfish Dropdown menu navigation. Webbutveckling wordpress theme is fully compatible with WordPress version 2.7 Released under the GNU General Public License. This means you may use it for any purpose, and make any changes you like. However I would like if you leave <a href="http://www.divinedeveloper.com/">Webbutveckling</a> link to my site under your footer. Version: 1.1</p>
<p>*************************** UPDATES ***************************</p>
<p><strong>2008.12.29 &#8211; Version 1.1</strong></p>
<ul>
<li>changelog.txt &#8211; Added changelog and revised version number</li>
<li>added function content limit which limit posts on front page after 450 characters</li>
<li>added admin panel for welcome message</li>
<li>added function which pull first image from posts as a thumbnail on a front page</li>
<li>2.7 compatible</li>
</ul>
<p>*************************** FEATURES ***************************</p>
<p><strong>Features</strong></p>
<ul>
<li>Modern, 2-columns, Unique design wordpress theme</li>
<li>Widget ready</li>
<li>Fully gettext wp theme</li>
<li>Valid XHTML 1.0 Transitional</li>
<li>Gravatars support</li>
<li>JQuery powered tabbed sidebar</li>
<li>Son of Suckerfish Dropdown menu navigation</li>
<li>Fully compatible with WordPress version 2.7</li>
</ul>
<p>*************************** INSTALLATION ***************************</p>
<ul>
<li>Unzip the downloaded file. You&#8217;ll get a folder named &#8220;webbdesign&#8221;</li>
<li>Upload the entire &#8220;webbdesign&#8221; folder to your &#8216;wp-content/themes/&#8221; folder</li>
<li>Login into WordPress admin panel</li>
<li>Click on the &#8220;Presentation&#8221; tab</li>
<li>Click on the &#8220;Webbutveckling&#8221; theme screenshot or title</li>
<li>Then just take a look at your blog and hit refresh to see the new theme.</li>
</ul>
<p>See Webbutveckling in action or download it from <a href="http://wordpress.org/extend/themes/webbutveckling">WordPress Theme Directory</a>.</p>
<p>If you like the themes, found a bug and/or want to make a suggestion please leave a comment below.</p>
<p>The post <a href="http://www.divinedeveloper.com/webbutveckling/">Webbutveckling</a> appeared first on <a href="http://www.divinedeveloper.com">Divine Developer</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.divinedeveloper.com/webbutveckling/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Webbdesign Free WordPress Theme</title>
		<link>http://www.divinedeveloper.com/webbdesign-free-wordpress-theme/</link>
		<comments>http://www.divinedeveloper.com/webbdesign-free-wordpress-theme/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 19:34:22 +0000</pubDate>
		<dc:creator>Mladjo</dc:creator>
				<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://www.divinedeveloper.com/?p=17&#038;langswitch_lang=en</guid>
		<description><![CDATA[<p>Free WordPress Theme Webbdesign I&#8217;m proud to release free wordpress theme: Webbdesign Screenshot: Features: 2-column wordpress theme Unique design Widget ready Fully gettext wp theme Valid XHTML 1.0 Transitional Works with latest WordPress 2.5.1 and 2.3 Backward compactable with WordPress &#8230; <a href="http://www.divinedeveloper.com/webbdesign-free-wordpress-theme/">Continued</a></p><p>The post <a href="http://www.divinedeveloper.com/webbdesign-free-wordpress-theme/">Webbdesign Free WordPress Theme</a> appeared first on <a href="http://www.divinedeveloper.com">Divine Developer</a>.</p>]]></description>
				<content:encoded><![CDATA[<h3>Free WordPress Theme Webbdesign</h3>
<p>I&#8217;m proud to release free <a href="http://wordpress.org/">wordpress</a> theme: Webbdesign </p>
<p><strong>Screenshot:</strong></p>
<p><a class="thickbox" title="WebbDesign WordPress Theme" href="http://en.divinedeveloper.com/wp-content/uploads/2008/06/screenshoot.png"><img src="http://www.divinedeveloper.com/wp-content/uploads/screenshoot-300x225.png" width="240" height="180" alt="WebbDesign WordPress Theme" title="WebbDesign WordPress Theme" /></a></p>
<p><strong>Features:</strong></p>
<ul>
<li>2-column wordpress theme</li>
<li>Unique design</li>
<li>Widget ready</li>
<li>Fully gettext wp theme</li>
<li>Valid XHTML 1.0 Transitional</li>
<li>Works with latest WordPress 2.5.1 and 2.3</li>
<li>Backward compactable with WordPress 2.2</li>
</ul>
<p><a href="http://www.divinedeveloper.com/wp-content/uploads/webbdesign.zip"><strong>Download</strong></a> | <a href="http://www.stariras.com/"><strong>Live demo</strong></a></p>
<p><strong>Instalation</strong></p>
<ul>
<li>Unzip the downloaded file. You&#8217;ll get a folder named &#8220;webbdesign&#8221; </li>
<li>Upload the entire &#8220;webbdesign&#8221; folder to your &#8216;wp-content/themes/&#8221; folder </li>
<li>Login into WordPress admin panel </li>
<li>Click on the &#8220;Presentation&#8221; tab </li>
<li>Click on the &#8220;Webbdesign&#8221; theme screenshot or title </li>
<li>Then just take a look at your blog and hit refresh to see the new theme. </li>
</ul>
<p><strong>License:</strong></p>
<p>Released under a <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-Share Alike 3.0 License</a>. This means you may use it for any purpose, and make any changes you like. Just leave my <a href="http://www.divinedeveloper.com/">Webbdesign</a> link under your footer.</p>
<p>Please feel free to provide feedback! </p>
<p>The post <a href="http://www.divinedeveloper.com/webbdesign-free-wordpress-theme/">Webbdesign Free WordPress Theme</a> appeared first on <a href="http://www.divinedeveloper.com">Divine Developer</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.divinedeveloper.com/webbdesign-free-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>
