<?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>MagzNetwork Solution &#187; Tutorials</title>
	<atom:link href="http://www.magznetwork.com/blog-design/tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://www.magznetwork.com</link>
	<description>Wordpress Themes, Blogger Templates, and Web Development</description>
	<lastBuildDate>Mon, 15 Feb 2010 09:00:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Complete SEO Guide For Blogger Templates</title>
		<link>http://www.magznetwork.com/tutorials/complete-seo-guide-for-blogger-templates.html</link>
		<comments>http://www.magznetwork.com/tutorials/complete-seo-guide-for-blogger-templates.html#comments</comments>
		<pubDate>Sun, 05 Apr 2009 09:15:58 +0000</pubDate>
		<dc:creator>Agus MU</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.magznetwork.com/?p=388</guid>
		<description><![CDATA[This post will provide you complete information on search engine optimization (SEO) for blogger templates. I have implemented this SEO guide at one of my &#8220;dummy&#8221; blog, SeasonEpisode TV News. Don&#8217;t forget to check it for study case. I believe that this post isn&#8217;t the most complete SEO guide for blogger template. If you have [...]]]></description>
			<content:encoded><![CDATA[<p>This post will provide you complete information on search engine optimization (SEO) for blogger templates. I have implemented this SEO guide at one of my &#8220;dummy&#8221; blog, <a href="http://http://seasonepisodetvnews.blogspot.com/" target="_blank">SeasonEpisode TV News</a>. Don&#8217;t forget to check it for study case. I believe that this post isn&#8217;t the most complete SEO guide for blogger template. If you have any idea, drop me a commend and then we can discuss it here.</p>
<h3>Page Title</h3>
<p><img class="size-full wp-image-385" title="page-title" src="http://www.magznetwork.com/wp-content/uploads/2009/04/page-title.gif" alt="SEO Page Title" width="450" height="150" /></p>
<p>Standard page title for a single Blogger post is <strong>BLOG TITLE: POST TITLE</strong>. You can improve SEO by changing the title tags to <strong>POST TITLE | BLOG TITLE</strong>. Find this code in your XML template,</p>
<pre>&lt;title&gt;&lt;data:blog.pageTitle/&gt;&lt;/title&gt;</pre>
<p>replace with this code,</p>
<pre>&lt;b:if cond='data:blog.pageType == &amp;quot;item&amp;quot;'&gt;
&lt;title&gt;&lt;data:blog.pageName/&gt; | &lt;data:blog.title/&gt;&lt;/title&gt;
&lt;b:else/&gt;
&lt;title&gt;&lt;data:blog.pageTitle/&gt;&lt;/title&gt;
&lt;/b:if&gt;</pre>
<p>You can also add some keywords to homepage title, for example</p>
<pre>&lt;b:if cond='data:blog.pageType == &amp;quot;item&amp;quot;'&gt;
&lt;title&gt;&lt;data:blog.pageName/&gt; | &lt;data:blog.title/&gt;&lt;/title&gt;
&lt;b:else/&gt;
&lt;title&gt;&lt;data:blog.pageTitle/&gt; | TV Episode Guide | TV Show Info&lt;/title&gt;
&lt;/b:if&gt;</pre>
<h3>Meta Keywords and Description</h3>
<p><img class="size-full wp-image-384" title="meta-keywords" src="http://www.magznetwork.com/wp-content/uploads/2009/04/meta-keywords.gif" alt="Meta Keywords and Description" width="450" height="150" /></p>
<p>Some blogger expert have written tutorials about how to add meta keywords and description. It is very easy, you need to add this code after title tag above or before <code>&lt;b:skin&gt;&lt;![CDATA[/*</code></p>
<p>For example,</p>
<pre>&lt;meta name="description" content="SeasonEpisode TV News - TV Episode Guide" /&gt;
&lt;meta name="keywords" content="tv news, season episode, episode guide, tv listing" /&gt;</pre>
<p>But, this code add <strong>same</strong> meta keywords &amp; description to <strong>all</strong> posts. It is not good because you will find a warning at Google Webmaster Tools because duplicate meta keywords &amp; description are detected. So, it is better if you only add meta keywords &amp; description to the homepage. For example, you can add this code,</p>
<pre>&lt;b:if cond='data:blog.url == data:blog.homepageUrl'&gt;
&lt;meta name="description" content="SeasonEpisode TV News - TV Episode Guide " /&gt;
&lt;meta name="keywords" content="tv news, season episode, episode guide, tv listing" /&gt;
&lt;/b:if&gt;</pre>
<h3>Heading</h3>
<p><img class="size-full wp-image-382" title="heading-title" src="http://www.magznetwork.com/wp-content/uploads/2009/04/heading-title.gif" alt="Heading" width="450" height="150" /></p>
<p>Heading Tag (H1, H2, H3, H4, H5) is also important for SEO. All of Blogger widgets (gadgets) title use H2 tags.  But, Minima Template use <strong>H3</strong> tag for post title and many blogger templates use <strong>H2</strong> tag for post title. To improve SEO, you need to use <strong>H1 </strong>tag for post title. For example, find this code,</p>
<pre>&lt;b:if cond='data:post.title'&gt;
&lt;h3 class='post-title entry-title'&gt;
&lt;b:if cond='data:post.link'&gt;
&lt;a expr:href='data:post.link'&gt;&lt;data:post.title/&gt;&lt;/a&gt;
&lt;b:else/&gt;
&lt;b:if cond='data:post.url'&gt;
&lt;a expr:href='data:post.url'&gt;&lt;data:post.title/&gt;&lt;/a&gt;
&lt;b:else/&gt;
&lt;data:post.title/&gt;
&lt;/b:if&gt;
&lt;/b:if&gt;
&lt;/h3&gt;
&lt;/b:if&gt;</pre>
<p>This example shows that your template use H3 tag for post title (If you don't find it, your template may use H2 tag for post title). Replace H3 (or H2) at this code with H1, for example,</p>
<pre>&lt;b:if cond='data:post.title'&gt;
&lt;h1 class='post-title entry-title'&gt;
&lt;b:if cond='data:post.link'&gt;
&lt;a expr:href='data:post.link'&gt;&lt;data:post.title/&gt;&lt;/a&gt;
&lt;b:else/&gt;
&lt;b:if cond='data:post.url'&gt;
&lt;a expr:href='data:post.url'&gt;&lt;data:post.title/&gt;&lt;/a&gt;
&lt;b:else/&gt;
&lt;data:post.title/&gt;
&lt;/b:if&gt;
&lt;/b:if&gt;
&lt;/h1&gt;
&lt;/b:if&gt;</pre>
<p>And you need to change post title font size by adding this code before <code>]]&gt;&lt;/b:skin&gt;</code></p>
<pre>h1.post-title, .post h1 #Blog1 h1, #Blog2 h1 { font-size:1.5em; }</pre>
<p>For example, i use 1.5em font size. You can change it if you want.</p>
<h3>Social Bookmarking</h3>
<p><img class="size-full wp-image-387" title="sociable-social-bookmarks" src="http://www.magznetwork.com/wp-content/uploads/2009/04/sociable-social-bookmarks.gif" alt="Social Bookmarking" width="450" height="150" /></p>
<p>This year, community is the king! Adding social bookmarking links can help you build your community and improve SEO. For example, i use Sociable icons (I&#8217;ll write tutorial later). I have written similar tutorial <a href="http://www.magznetwork.com/tutorials/tutorial-beautiful-big-social-bookmarking-buttons.html" target="_self">here</a>.</p>
<h3>Breadcrumb</h3>
<p><img class="size-full wp-image-381" title="breadcrumb" src="http://www.magznetwork.com/wp-content/uploads/2009/04/breadcrumb.gif" alt="Breadcrumb" width="450" height="150" /></p>
<p>You can use breadcrumb to provide &#8220;easy&#8221; navigation for your visitor. You can find the tutorial <a href="http://purplemoggy.blogspot.com/2006/11/year-month-breadcrumbs.html" target="_blank">here</a>.</p>
<h3>Related Posts</h3>
<p><img class="size-full wp-image-386" title="related-posts" src="http://www.magznetwork.com/wp-content/uploads/2009/04/related-posts.gif" alt="Related Posts" width="450" height="150" /></p>
<p>Some blogger expert have written tutorials about how to add related posts hack. All of them use JSON javascript code. Read the best related posts hack <a href="http://purplemoggy.blogspot.com/2006/12/related-posts.html" target="_blank">here</a>&#8230;</p>
<h3>Auto-Readmore Link</h3>
<p><img class="size-full wp-image-380" title="auto-readme" src="http://www.magznetwork.com/wp-content/uploads/2009/04/auto-readme.gif" alt="Auto-Readmore" width="450" height="150" /></p>
<p>Auto-Readmore link doesn&#8217;t have direct relationship with SEO. But, you can use it to improve user interfaces for your visitors. Make your visitors enjoy your blog, get more traffic, and SEO will follow <img src='http://www.magznetwork.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  There are two type of ReadMore hacks. They are CSS Javascript hack based. You can find the tutorial <a href="http://bloggermagz.blogspot.com/2007/09/selective-expandable-post-summaries.html" target="_blank">here (CSS)</a> and <a href="http://translate.google.com/translate?prev=hp&amp;hl=en&amp;js=n&amp;u=http%3A%2F%2Fwww.o-om.com%2F2009%2F04%2Fcara-pasang-auto-read-more-terbaru-part.html&amp;sl=id&amp;tl=en" target="_blank">here (Javascript)</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.magznetwork.com/tutorials/complete-seo-guide-for-blogger-templates.html/feed</wfw:commentRss>
		<slash:comments>69</slash:comments>
		</item>
		<item>
		<title>Tutorial: Beautiful big Social Bookmarking buttons</title>
		<link>http://www.magznetwork.com/tutorials/tutorial-beautiful-big-social-bookmarking-buttons.html</link>
		<comments>http://www.magznetwork.com/tutorials/tutorial-beautiful-big-social-bookmarking-buttons.html#comments</comments>
		<pubDate>Mon, 24 Nov 2008 02:51:31 +0000</pubDate>
		<dc:creator>Agus MU</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[social bookmarks]]></category>

		<guid isPermaLink="false">http://www.magznetwork.com/?p=105</guid>
		<description><![CDATA[I got a question from Gabstero Hi! Quick question: What plugin are you using for those beautiful big Social Bookmarking buttons at the bottom of your Indomagz worpress page? (Stumble, Delicious, Technorati, etc) I like the fact that they are big as opposed to the other tiny ones you find on the web. Thanks! Gabi. [...]]]></description>
			<content:encoded><![CDATA[<p>I got <a href="http://www.magznetwork.com/support/tutorials/beautiful-social-buttons.html" target="_blank">a question </a>from <a title="Posts by Gabstero" href="../support/author/gabstero/" target="_blank">Gabstero</a></p>
<blockquote><p>Hi!</p>
<p>Quick question:</p>
<p>What plugin are you using for those beautiful big Social Bookmarking buttons at the bottom of your Indomagz worpress page? (Stumble, Delicious, Technorati, etc)</p>
<p>I like the fact that they are big as opposed to the other tiny ones you find on the web.</p>
<p>Thanks!<br />
Gabi.</p></blockquote>
<p>I don&#8217;t use any WordPress plugins for this. If i can do it without a plugin, then i&#8217;ll not use any plugin.</p>
<div id="attachment_109" class="wp-caption alignnone" style="width: 460px"><img class="size-full wp-image-109" title="bigsocialbutton" src="http://www.magznetwork.com/wp-content/uploads/2008/11/bigsocialbutton.jpg" alt="Beautiful Big Social Bookmarking Buttons " width="450" height="153" /><p class="wp-caption-text">Beautiful Big Social Bookmarking Buttons </p></div>
<p>This is a short tutorial for you, with detail instruction, for <strong>both WordPress and Blogger</strong> <img src='http://www.magznetwork.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><span id="more-105"></span></p>
<h3>WordPress</h3>
<p>First, you have to download the images and upload them to the /images folder in your current theme.</p>
<p>[download id="6"]</p>
<p>Edit your theme files, single.php and/or page.php and/or index.php . Copy and paste the code below after <code>&lt;?php the_content('Read more &amp;raquo;'); ?&gt;</code></p>
<pre>&lt;div style="clear:both; "&gt;
&lt;div style="width:60px; float:left;"&gt;
&lt;script type="text/javascript"&gt;
digg_url = '&lt;?php the_permalink() ?&gt;';
&lt;/script&gt;
&lt;script src="http://digg.com/tools/diggthis.js" type="text/javascript"&gt;&lt;/script&gt;
&lt;/div&gt;
&lt;div style="width:60px; float:left;"&gt;
&lt;script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype="square"&gt;&lt;?php the_permalink() ?&gt;&lt;/script&gt;
&lt;/div&gt;
&lt;div style="width:65px; float:left;"&gt;
&lt;a href="http://www.stumbleupon.com/submit?url=&lt;?php the_permalink() ?&gt;&amp;amp;title=&lt;?php the_title(); ?&gt;" target="_blank" rel="external nofollow"&gt;&lt;img src="&lt;?php echo bloginfo(stylesheet_directory) .'/images/'; ?&gt;stumble.gif" style="padding:0;margin:0;border:none;" alt="Stumble" /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;div style="width:65px; float:left;"&gt;
&lt;a href="http://del.icio.us/post?url=&lt;?php the_permalink() ?&gt;&amp;amp;title=&lt;?php the_title(); ?&gt;" target="_blank" rel="external nofollow"&gt;&lt;img src="&lt;?php echo bloginfo(stylesheet_directory) .'/images/'; ?&gt;delicious.gif" style="padding:0;margin:0;border:none;" alt="Delicious" /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;div style="width:65px; float:left;"&gt;
&lt;a href="http://technorati.com/faves?add=&lt;?php the_permalink() ?&gt;" target="_blank" rel="external nofollow"&gt;&lt;img src="&lt;?php echo bloginfo(stylesheet_directory) .'/images/'; ?&gt;technorati.gif" style="padding:0;margin:0;border:none;" alt="Technorati" /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;div style="width:65px; float:left;"&gt;
&lt;a href="http://twitthis.com/twit?url=&lt;?php the_permalink() ?&gt;" target="_blank" rel="external nofollow"&gt;&lt;img src="&lt;?php echo bloginfo(stylesheet_directory) .'/images/'; ?&gt;twitter.gif" style="padding:0;margin:0;border:none;" alt="Twitter" /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;div style="width:65px; float:left;"&gt;
&lt;a href="http://www.facebook.com/sharer.php?u=&lt;?php the_permalink() ?&gt;&amp;amp;t=&lt;?php the_title(); ?&gt;" target="_blank" rel="external nofollow"&gt;&lt;img src="&lt;?php echo bloginfo(stylesheet_directory) .'/images/'; ?&gt;facebook.gif" style="padding:0;margin:0;border:none;" alt="Facebook" /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;</pre>
<h3>Blogger</h3>
<p>Go to Layout &#8211; Edit HTML, don&#8217;t forget to check &#8220;Expand Widget Templates&#8221;. Copy &amp; paste the code below after <code>&lt;data:post.body/&gt;</code></p>
<pre>&lt;div style='clear:both; '&gt;
&lt;div style='width:60px; float:left;'&gt;
&lt;script type='text/javascript'&gt;
digg_url = &amp;#39;&lt;data:post.url/&gt;&amp;#39;;
&lt;/script&gt;
&lt;script src='http://digg.com/tools/diggthis.js' type='text/javascript'/&gt;
&lt;/div&gt;
&lt;div style='width:60px; float:left;'&gt;
&lt;script badgetype='square' src='http://d.yimg.com/ds/badge2.js' type='text/javascript'&gt;&lt;data:post.url/&gt;&lt;/script&gt;
&lt;/div&gt;
&lt;div style='width:65px; float:left;'&gt;
&lt;a expr:href='&amp;quot;http://www.stumbleupon.com/submit?url=&amp;quot; + data:post.url + &amp;quot;&amp;amp;title=&amp;quot; + data:post.title' rel='external nofollow' target='_blank'&gt;&lt;img alt='Stumble' src='http://s310.photobucket.com/albums/kk426/magznetwork/socialbig/stumble.gif' style='padding:0;margin:0;border:none;'/&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;div style='width:65px; float:left;'&gt;
&lt;a expr:href='&amp;quot;http://del.icio.us/post?url=&amp;quot; + data:post.url + &amp;quot;&amp;amp;title=&amp;quot; + data:post.title' rel='external nofollow' target='_blank'&gt;&lt;img alt='Delicious' src='http://s310.photobucket.com/albums/kk426/magznetwork/socialbig/delicious.gif' style='padding:0;margin:0;border:none;'/&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;div style='width:65px; float:left;'&gt;
&lt;a expr:href='&amp;quot;http://technorati.com/faves?add=&amp;quot; + data:post.url' rel='external nofollow' target='_blank'&gt;&lt;img alt='Technorati' src='http://s310.photobucket.com/albums/kk426/magznetwork/socialbig/technorati.gif' style='padding:0;margin:0;border:none;'/&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;div style='width:65px; float:left;'&gt;
&lt;a expr:href='&amp;quot;http://twitthis.com/twit?url=&amp;quot; + data:post.url' rel='external nofollow' target='_blank'&gt;&lt;img alt='Twitter' src='http://s310.photobucket.com/albums/kk426/magznetwork/socialbig/twitter.gif' style='padding:0;margin:0;border:none;'/&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;div style='width:65px; float:left;'&gt;
&lt;a expr:href='&amp;quot;http://www.facebook.com/sharer.php?u=&amp;quot; + data:post.url + &amp;quot;&amp;amp;t=&amp;quot; + data:post.title' rel='external nofollow' target='_blank'&gt;&lt;img alt='Facebook' src='http://s310.photobucket.com/albums/kk426/magznetwork/socialbig/facebook.gif' style='padding:0;margin:0;border:none;'/&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;</pre>
<h3>SUPPORT &amp; DISCUSSION</h3>
<p>Go to <a href="../support/" target="_blank">MagzNetwork Support</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.magznetwork.com/tutorials/tutorial-beautiful-big-social-bookmarking-buttons.html/feed</wfw:commentRss>
		<slash:comments>50</slash:comments>
		</item>
		<item>
		<title>How To Create Premium WordPress Theme Using Custom WordPress Queries</title>
		<link>http://www.magznetwork.com/tutorials/how-to-create-premium-wordpress-theme-using-custom-wordpress-queries.html</link>
		<comments>http://www.magznetwork.com/tutorials/how-to-create-premium-wordpress-theme-using-custom-wordpress-queries.html#comments</comments>
		<pubDate>Mon, 13 Oct 2008 08:24:14 +0000</pubDate>
		<dc:creator>Agus MU</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.magznetwork.com/?p=57</guid>
		<description><![CDATA[There are so many &#8220;premium&#8221; wordpress theme designer today. But, do you wanna create your own premium wordpress theme? It&#8217;s easy! You only have to know about custom wordpress queries. What&#8217;s custom wordpress queries? I&#8217;ll use Indomagz 2 Premium WordPress Theme for the study case. Click here to open Indomagz 2 live demo. You can [...]]]></description>
			<content:encoded><![CDATA[<p>There are so many &#8220;premium&#8221; wordpress theme designer today. But, do you wanna create your own premium wordpress theme? It&#8217;s easy! You only have to know about custom wordpress queries.</p>
<p>What&#8217;s custom wordpress queries? I&#8217;ll use <a href="http://www.magznetwork.com/wordpress-themes/indomagz-free-premium-wordpress-theme.html">Indomagz 2 Premium WordPress Theme</a> for the study case. Click here to open <a href="http://www.magznetwork.com/demo/">Indomagz 2 live demo</a>.</p>
<div id="attachment_58" class="wp-caption alignnone" style="width: 460px"><img class="size-full wp-image-58" title="wordpress-custom-queries" src="http://www.magznetwork.com/wp-content/uploads/2008/10/wordpress-custom-queries.jpg" alt="Wordpress Custom Queries" width="450" height="459" /><p class="wp-caption-text">Wordpress Custom Queries</p></div>
<p><span id="more-57"></span>You can see from the live demo that i use many custom wordpress queries to create &#8220;magazine&#8221; style for the frontpage. I&#8217;ll explain some of them. You can download <a href="http://www.magznetwork.com/download/3/">Indomagz 2 Tutorial</a> for complete explanation. There are five pages to explain how to configure homepage using different queries.</p>
<p>First of all, you have to copy the index.php to <strong>home.php </strong>. This &#8220;home.php&#8221; file is the template for the frontpage. Then you can edit home.php to create your own frontpage. <img src='http://www.magznetwork.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>For an example, you can see Indomagz 2 Tutorial page 4. It shows the full code for the 1st custom wordpress query. The code below is the most importand part. I give you many possibilities to create your own frontpage. You can customize it easily by reading the comment in Indomagz 2 home.php file.</p>
<pre>&lt;?php // use this one to show the latest post for the headline. ?&gt;
&lt;?php $recent = new WP_Query("showposts=1"); ?&gt;

&lt;?php // use this one to show the latest post from a category for the headline,
uncomment if you want to use it ?&gt;
&lt;?php // change cat=1 with the category ID ?&gt;
&lt;?php // $recent = new WP_Query("cat=5&amp;showposts=1"); ?&gt;

&lt;?php // use this one to show the latest post from tag for the headline, uncomment if
you want to use it ?&gt;
&lt;?php // change tag=headline with the tag name ?&gt;
&lt;?php // $recent = new WP_Query("tag=headline&amp;showposts=1"); ?&gt;

&lt;?php // use this one to show a particular page for the headline, uncomment if you want to use it ?&gt;
&lt;?php // change page_id=2 with the page ID ?&gt;
&lt;?php // $recent = new WP_Query("page_id=2"); ?&gt;

&lt;?php // use this one to show a particular post for the headline, uncomment if you want to use it ?&gt;
&lt;?php // change p=1 with the post ID ?&gt;
&lt;?php // $recent = new WP_Query("p=1"); ?&gt;</pre>
<p>Note: For php newbie, <strong>&#8220;uncoment&#8221;</strong> means that you have to remove &#8220;//&#8221; to the query that you want to use it and give &#8220;//&#8221; to &#8220;comment&#8221; the active query.</p>
<p>Understand? You can show a post, a page, the latest posts, the latest posts from categories and tags. It&#8217;s easy, isn&#8217;t it? You can also control the number of displayed posts using <strong><code>showposts</code></strong> parameter.</p>
<p>For an example, this code show the full code for a wordpress custom query. It shows 3 latest post from the category with ID=1 (only the title in unordered list).</p>
<pre>&lt;?php $recent = new WP_Query("cat=1&amp;showposts=3"); ?&gt;
&lt;?php if ($recent-&gt;have_posts()) :  ?&gt;
&lt;ul&gt;
&lt;?php while ($recent-&gt;have_posts()) : $recent-&gt;the_post(); ?&gt;
&lt;li&gt;
&lt;a href="&lt;?php the_permalink() ?&gt;" title="&lt;?php _e('Permanent link to'); ?&gt;
&lt;?php the_title(); ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;?php endwhile;?&gt;
&lt;/ul&gt;
&lt;?php endif;?&gt;</pre>
<p>You can read my Indomagz 2 Tutorial to get some inspirations for using custom wordpress queries.</p>
<h3>Using OFFSET Parameter</h3>
<p>I got a question from <a href="http://www.magznetwork.com/support/wordpress-themes/how-would-one-have-posts-shown-according-to-date.html" target="_blank">Alli</a></p>
<blockquote><p>&#8220;Hello, awesome theme we love the look and feel of the theme.</p>
<p>Anywho, my PHP coding is very much at a novice level.  What we would like to accomplish is:</p>
<p>Have the 4 most recent posts appear in the ?headline? area,</p>
<p>Have the 5th through 10th most recent posts appear in the ?big thumbnail area?</p>
<p>Then have the 11th through 16th posts appear in the ?small thumbnail area?&#8221;</p></blockquote>
<p>For this case, you can use OFFSET parameter. So, the queries are,</p>
<p>The first custom wordpress query:</p>
<pre>&lt;?php $recent = new WP_Query("showposts=4"); ?&gt;</pre>
<p>The second custom wordpress query:</p>
<pre>&lt;?php $recent = new WP_Query("showposts=6&amp;offset=4"); ?&gt;</pre>
<p>The third custom wordpress query:</p>
<pre>&lt;?php $recent = new WP_Query("showposts=6&amp;offset=10"); ?&gt;</pre>
<p>Then, are you ready to create your own Premium WordPress Theme?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.magznetwork.com/tutorials/how-to-create-premium-wordpress-theme-using-custom-wordpress-queries.html/feed</wfw:commentRss>
		<slash:comments>52</slash:comments>
		</item>
		<item>
		<title>How To Create Premium Blogger Template: &#8220;We Love Blogger&#8221; Study Case</title>
		<link>http://www.magznetwork.com/tutorials/how-to-create-premium-blogger-template-we-love-blogger-study-case.html</link>
		<comments>http://www.magznetwork.com/tutorials/how-to-create-premium-blogger-template-we-love-blogger-study-case.html#comments</comments>
		<pubDate>Thu, 09 Oct 2008 14:38:18 +0000</pubDate>
		<dc:creator>Agus MU</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.magznetwork.com/?p=47</guid>
		<description><![CDATA[Amanda (Blogger Buster) has introduced &#8220;We Love Blogger&#8221; last week (in her birthday ). We Love Blogger is a gallery and news portal for Blogger fanatics! Here you will find great Blogger designs to inspire you; links to the latest Blogger news and useful tutorials to help you build a better blog. It&#8217;s a great [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bloggerbuster.com/2008/09/introducing-love-blogger.html" target="_blank">Amanda</a> (<a href="http://www.bloggerbuster.com/" target="_blank">Blogger Buster</a>) has introduced &#8220;<a href="http://www.weloveblogger.com/" target="_blank">We Love Blogger</a>&#8221; last week (in her birthday <img src='http://www.magznetwork.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ). <a href="http://www.weloveblogger.com/">We Love Blogger</a> is a gallery and news portal for <strong>Blogger fanatics</strong>! Here you will find great Blogger designs to inspire you; links to the latest Blogger news and useful tutorials to help you build a better blog.</p>
<p>It&#8217;s a great work. And, it has same concept with my <a href="http://www.magznetwork.com/blogger-templates/revolution-pro-business-premium-blogger-template.html">Revolution Pro Business Premium Blogger Template</a>. I&#8217;ll show you the basic concept for creating a Premium Blogger Template, especially for &#8220;We Love Blogger&#8221; Premium Blogger Template.</p>
<p><strong>Note: This is an intermediate-advanced level of Blogger template designer. If you&#8217;re only a beginner, you can read this post for your knowledge <img src='http://www.magznetwork.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
</strong></p>
<p>There are three different page templates here.</p>
<div id="attachment_48" class="wp-caption alignnone" style="width: 460px"><img class="size-full wp-image-48" title="we-love-blogger-1" src="http://www.magznetwork.com/wp-content/uploads/2008/10/we-love-blogger-1.jpg" alt="We Love Blogger: Home Template" width="450" height="296" /><p class="wp-caption-text">We Love Blogger: Home Template</p></div>
<p><span id="more-47"></span></p>
<div id="attachment_49" class="wp-caption alignnone" style="width: 460px"><img class="size-full wp-image-49" title="we-love-blogger-2" src="http://www.magznetwork.com/wp-content/uploads/2008/10/we-love-blogger-2.jpg" alt="We Love Blogger: Category (Label) / Archive Template" width="450" height="296" /><p class="wp-caption-text">We Love Blogger: Category (Label) / Archive Template</p></div>
<div id="attachment_50" class="wp-caption alignnone" style="width: 460px"><img class="size-full wp-image-50" title="we-love-blogger-3" src="http://www.magznetwork.com/wp-content/uploads/2008/10/we-love-blogger-3.jpg" alt="We Love Blogger: Post Template" width="450" height="296" /><p class="wp-caption-text">We Love Blogger: Post Template</p></div>
<p>This simple illustration will explain the concept clearly.</p>
<p><img class="size-full wp-image-51" title="we-love-blogger-concept" src="http://www.magznetwork.com/wp-content/uploads/2008/10/we-love-blogger-concept.jpg" alt="&quot;We Love Blogger&quot; Template Concept" width="450" height="652" /></p>
<p>Generally, there are only 1 Blog widget in a Blogger template (with id Blog1). But we can add many Blog widget directly to the code (you can&#8217;t add them using Page Elements feature). Give every Blog widget with different ID, for example Amanda gives id <strong>Blog1</strong> for home template, <strong>Blog2 </strong>for label template, and <strong>Blog3 </strong>for post template.</p>
<p>You can use <a href="http://help.blogger.com/bin/answer.py?answer=47270&amp;topic=12488#global" target="_blank"><strong>pageType</strong> tags</a> to create conditional statements to make each template will be shown in the different conditions. There are three values of <strong>pageType</strong> tags. They are &#8216;item&#8217;, &#8216;archive&#8217;, or &#8216;index&#8217;.</p>
<p>This is a simple code to create conditional statement using pageType tags.</p>
<div id="attachment_53" class="wp-caption alignnone" style="width: 460px"><img class="size-full wp-image-53" title="pagetype-conditional-code" src="http://www.magznetwork.com/wp-content/uploads/2008/10/pagetype-conditional-code.jpg" alt="An Example: Conditional Code to create Premium Blogger Template" width="450" height="141" /><p class="wp-caption-text">An Example: Conditional Code to create Premium Blogger Template</p></div>
<p><strong>Are you ready to create your own Premium Blogger Template?</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.magznetwork.com/tutorials/how-to-create-premium-blogger-template-we-love-blogger-study-case.html/feed</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
	</channel>
</rss>

