<?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>Webmaster Bulletin &#187; wordpress</title>
	<atom:link href="http://www.webmasterbulletin.net/tag/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.webmasterbulletin.net</link>
	<description>Rambling around the web publishing industry</description>
	<lastBuildDate>Wed, 21 Jul 2010 09:48:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>wp super cache and WP3.0 menus</title>
		<link>http://www.webmasterbulletin.net/2010/07/wp-super-cache-and-wp3-0-menus/1270</link>
		<comments>http://www.webmasterbulletin.net/2010/07/wp-super-cache-and-wp3-0-menus/1270#comments</comments>
		<pubDate>Fri, 16 Jul 2010 09:09:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.webmasterbulletin.net/?p=1270</guid>
		<description><![CDATA[For those who are running small servers and wish to accelerate their worpdress installation, we recommend the installation of eaccelerator but also the wp-super-cache plugin. There is just a small hack for wordpress 3.0 menu users : the cache should be totally refreshed when a menu is modified, and this is performed via the wp_update_nav_menu [...]]]></description>
			<content:encoded><![CDATA[<p>For those who are running small servers and wish to accelerate their worpdress installation, we recommend the installation of eaccelerator but also the <a href="http://wordpress.org/extend/plugins/wp-super-cache/">wp-super-cache plugin</a>. There is just a small hack for wordpress 3.0 menu users : the cache should be totally refreshed when a menu is modified, and this is performed via the wp_update_nav_menu action, instantiated in the wp-cache-phase2.php / wp_cache_phase2 function</p>
<pre class="brush:php">add_action("wp_update_nav_menu" , 'wp_cache_clear_cache' );</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.webmasterbulletin.net/2010/07/wp-super-cache-and-wp3-0-menus/1270/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress single install / multiple blogs</title>
		<link>http://www.webmasterbulletin.net/2010/05/wordpress-single-install-multiple-blogs/1220</link>
		<comments>http://www.webmasterbulletin.net/2010/05/wordpress-single-install-multiple-blogs/1220#comments</comments>
		<pubDate>Wed, 26 May 2010 20:42:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.webmasterbulletin.net/?p=1220</guid>
		<description><![CDATA[Yes it is possible to host multiple sites for multiple customers with Wordpress. The Multi User feature we expeted in wordpress 3.0 will satisfy bloggers only but we need something more specific. The technique I describe here is similar to the one described here in the sense that it directs the database configuration constants to [...]]]></description>
			<content:encoded><![CDATA[<p>Yes it is possible to host multiple sites for multiple customers with Wordpress. The Multi User feature we expeted in wordpress 3.0 will satisfy bloggers only but we need something more specific. The technique I describe here is similar to the one <a href="http://www.duanestorey.com/blog/wordpress/one-wordpress-install-multiple-sites/">described here</a> in the sense that it directs the database configuration constants to specific databases instead of table prefixes as seen a lot. The advantage obviously is that you keep a single install of wordpress and only have one codebase to manage , while databases remain independant.</p>
<ul>
<li>create wp-domains folder, and inside one folder for each domain, example wp-domains/mysite.com</li>
<li>add the following code to wp-config.php : this coding allows a defualt domain to remain active even when the configuration file does not exist, at the expense of a loss in performance. But It is useful to show what&#8217;s missing.</li>
</ul>
<p>$domain = strtolower( str_replace( &#8220;www.&#8221;, &#8220;&#8221;, $_SERVER["SERVER_NAME"] ) );<br />
$domain = preg_replace(&#8217;[^a-z0-9\.-]&#8216;, &#8221;, $domain );<br />
$domainDirectory=&#8221;/wp-domains/&#8221; .$domain;<br />
$domainConfig= dirname(__FILE__) . $domainDirectory . &#8220;/db-config.php&#8221;;<br />
if ( file_exists(   $domainConfig ) ) {require_once(   $domainConfig );} else {<br />
$dbuser=&#8221;defaultdomaindatabase&#8221;;<br />
$dbpwd=&#8221;password&#8221;;<br />
if ($domain!=&#8221;defaultdomain.com&#8221;) echo &#8220;missing &#8221; .$domainConfig;}</p>
<ul>
<li>replace definitions with variables in wp-config.php</li>
</ul>
<p>define(&#8217;DB_NAME&#8217;, $dbuser);<br />
define(&#8217;DB_USER&#8217;, $dbuser);<br />
define(&#8217;DB_PASSWORD&#8217;, $dbpwd);</p>
<p>Once this is working with your default  domain, setup virtual hosts  in Apache and try a new domain. Remember on a new install to setup the upload folder in wordpress admin settings.</p>
<p><strong>Multi site config for Wordpress : Compatible plugins</strong></p>
<p>I&#8217;m running the following plugins and they work perfectly</p>
<ul>
<li><a href="http://wordpress.org/extend/plugins/wp-super-cache/">WP Super Cache</a> : works fine because the cache filename coding alogrithm includes the domain name</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.webmasterbulletin.net/2010/05/wordpress-single-install-multiple-blogs/1220/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress : Upload images in post meta</title>
		<link>http://www.webmasterbulletin.net/2010/05/wordpress-upload-images-in-post-meta/1213</link>
		<comments>http://www.webmasterbulletin.net/2010/05/wordpress-upload-images-in-post-meta/1213#comments</comments>
		<pubDate>Mon, 24 May 2010 20:27:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.webmasterbulletin.net/?p=1213</guid>
		<description><![CDATA[
Word press image upload is nice and perfectly integrated in the wysiwyg editor. If you need to specify clearly where the image will appear, you can use the post thumnbail feature that attaches a specific image to a post. But if you need to duisplay more than image per post, then you&#8217;re better off using [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-medium wp-image-1214" title="verve-meta-boxes" src="http://www.webmasterbulletin.net/wp-content/uploads/2010/05/verve-meta-boxes-500x250.jpg" alt="verve-meta-boxes" width="500" height="250" /></p>
<p>Word press image upload is nice and perfectly integrated in the wysiwyg editor. If you need to specify clearly where the image will appear, you can use the post thumnbail feature that attaches a specific image to a post. But if you need to duisplay more than image per post, then you&#8217;re better off using custom fields, and a few plugins are available to let you upload image directly to a custom field</p>
<ul>
<li>tip : <a href="http://www.webmaster-source.com/2010/01/08/using-the-wordpress-uploader-in-your-plugin-or-theme/">using the wordpress uploader in your plugin or theme</a></li>
<li>Plugin :<a href="http://www.avenueverve.com/verve-meta-boxes/"> Verve meta boxes</a> (image above)</li>
<li>Plugin : <a href="http://wordpress.org/extend/plugins/custom-field-template/">Custom Field Templates</a>, this one has the great advantage of allowing custom field per template. A bit tricky to configure but really efficient. Amateurs will like our little trick below provides a simple lightbox on images thumbnail to display full image preview</li>
<li>Plugin : <a href="http://blog.page.ly/multiedit-plugin/">multi edit plugin</a>, with nice tabbed interface, only allows wysiwyg custom fields</li>
<li>Plugin :<a href="http://eskapism.se/blogg/2010/05/simple-fields-wp-custom-fields-on-steroids/"> Simple fields </a>with repeatable fields feature</li>
</ul>
<p><strong>Bonus : Custom Field Template Hack  displays full size image on custom image thumbnail in post / page edit in backend and additional function to automate image display in templates</strong></p>
<p><strong><span id="more-1213"></span></strong></p>
<p>You love the verve meta boxes image preview of custom fields, but would like to use advanced features from the custom field Template plugin  ? Well the Custom Field Template plugin seems really powerful and strong enough to make you have a look inside and add a simple preview function for uploaded custom images.</p>
<p><strong>Note </strong>: this hack is based on Custom Field Templates 1.6.5</p>
<p><strong>Backend : full size image preview in lightbox</strong></p>
<ul>
<li>open custom-field-template/custom-field-template.php  and go to line 1887, find the  following line<br />
if ( ( $value = intval($value) ) &amp;&amp; $thumb_url = get_attachment_icon_src( $value ) ) :</li>
<li>add the following line :
<pre class="brush:php">$full_src=    wp_get_attachment_url  (   $value) ;  // Webmasterbulletin Hack</pre>
</li>
<li>scroll a few lines below and alter the out HTML code to display the lightbox enabled link :<span style="font-family: monospace;"> </span>
<pre class="brush:as3">$out .= '&lt;p&gt;&lt;label for="'.$name . '_delete' . $sid . '"&gt;&lt;input type="checkbox" name="'.$name . '_delete[' . $sid . '][' . $cftnum . ']" id="'.$name . '_delete' . $sid . '" value="1" class="delete_file_checkbox" /&gt;' . __('Delete', 'custom-field-template') . '&lt;/label&gt;';
$out .= '&lt;a href="' . $full_src .'?TB_iframe=1" class="thickbox" &gt;'     ;
$out .=' &lt;img src="'.$thumb_url.'" width="32" height="32" style="vertical-align:middle;" /&gt; ' . $title . ' &lt;/a&gt;&lt;/p&gt;';
$out .= '&lt;input type="hidden" name="'.$name . '[' . $sid . '][' . $cftnum . ']" value="' . $value . '" /&gt;';</pre>
</li>
<li>And off you go</li>
</ul>
<p><strong>Frontend : easy template function for Custom Field Template images</strong></p>
<ul>
<li>this function is a simple shortcut to getting the id of the file and displaying the full image. add the function at the bottom of custom-field-template/custom-field-template.php, <strong>inside the class (before the closing })
<pre class="brush:php">    // webmasterbulletin.net hack add function to get images
 function get_post_meta_image($post_id, $key, $single = false)
 {
       $imageId= get_post_meta($post_id, $key, $single);
        if ($imageId)
            $imageHtml = wp_get_attachment_url($imageId);
        else $imageHtml="";
       return $imageHtml;
 }<span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; line-height: 19px; white-space: normal; font-size: 13px;"><strong> </strong></span></pre>
<p></strong></li>
<li><strong>use in your templates with same arguments from get_post_meta<br />
<span style="font-weight: normal;"><strong></p>
<pre class="brush:php" style="display: inline !important;">&lt;img src="&lt;?= custom_field_template::get_post_meta_image(get_the_ID(),"Header Image", true))?&gt;"  &gt;</pre>
<p></strong></span></strong></li>
</ul>
<p><strong> </strong></p>
<p><strong></p>
<ul>
<li><span style="font-weight: normal;"><strong> And again, off you go</strong></span></li>
</ul>
<p></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webmasterbulletin.net/2010/05/wordpress-upload-images-in-post-meta/1213/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multilingual wordpress with wpml plugin</title>
		<link>http://www.webmasterbulletin.net/2010/05/multilingual-wordpress-with-wpml-plugin/1199</link>
		<comments>http://www.webmasterbulletin.net/2010/05/multilingual-wordpress-with-wpml-plugin/1199#comments</comments>
		<pubDate>Thu, 20 May 2010 12:03:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Content Management]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.webmasterbulletin.net/?p=1199</guid>
		<description><![CDATA[wpml is a wonderful plugin that has so many  it takes a while to get used to its power.
A new beta version of the multilingual plugin has been published for early adopters who have already switched to 3.0
What I&#8217;ve tested is interesting and allows quick setting of multilingual website

Flag displaying is almost instant thanks to [...]]]></description>
			<content:encoded><![CDATA[<p>wpml is a wonderful plugin that has so many  it takes a while to get used to its power.</p>
<p>A new <a href="http://wpml.org/2010/04/first-developers-version-for-wordpress-3/">beta version of the multilingual plugin</a> has been published for early adopters who have already switched to 3.0</p>
<p>What I&#8217;ve tested is interesting and allows quick setting of multilingual website</p>
<ul>
<li>Flag displaying is almost instant thanks to dedicated functions or <a href="http://wpml.org/documentation/getting-started-guide/language-setup/custom-language-switcher/">specific coding as documented here</a>. Urls paths are well preserved and extended with the 2 letter language prefix.</li>
<li>Post translation is well implemented in the admin, each language displays a + button on the columns of the post / page</li>
<li>Posts can share common custom values or images, <a href="http://wpml.org/2009/09/creating-a-multilingual-product-catalog/">technique described here</a></li>
<li>all strings thath use the _e function in templates are translatable in the admin or in a mo file</li>
<li>as of today the wordpress 3.0 menu and custom post types do not work well with wpml but work is ongoing</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.webmasterbulletin.net/2010/05/multilingual-wordpress-with-wpml-plugin/1199/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wbFurnitureShop : premium wordpress cms theme</title>
		<link>http://www.webmasterbulletin.net/2010/05/wbfurnitureshop-wordpress-premium-theme/1150</link>
		<comments>http://www.webmasterbulletin.net/2010/05/wbfurnitureshop-wordpress-premium-theme/1150#comments</comments>
		<pubDate>Wed, 19 May 2010 13:06:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[premium templates]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.webmasterbulletin.net/?p=1150</guid>
		<description><![CDATA[wbFurnitureShop is a wordpress template that is an extremely simplified theme for using wordpress as a cms for making a presentation site. Exazmple is provided here in the form a furniture store template designed to use standard wordpress distribution to display a product line, content pages and a jquery  slider that is configured via the standard [...]]]></description>
			<content:encoded><![CDATA[<div>wbFurnitureShop is a wordpress template that is an extremely simplified theme for using <strong>wordpress as a cms</strong> for making a presentation site. Exazmple is provided here in the form a furniture store template designed to use standard wordpress distribution to display a product line, content pages and a jquery  slider that is configured via the standard wordpress content management  interface.</div>
<div>wbFurnitureShop wordpress template was specially developped for latest version of wordpress 3 , which is now available as beta on wordpress.org.</div>
<div><strong>Get in touch now : for less than an hours work you get  fully configured web site with easy admin and wordpress CMS features and full 24hours support for life ! </strong></div>
<div><strong><br />
</strong></div>
<div style="text-align: center;"><strong><a href="http://www.webmasterbulletin.net/shop/11-wordpress-furniture-shop-template.html">BUY NOW</a> on<a href="http://www.webmasterbulletin.net/shop/11-wordpress-furniture-shop-template.html"> webmasterbulletin.net/shop -<br />
shipped with LIFETIME MULTI SERVER LICENSE<br />
</a></strong></div>
<div style="text-align: center;"><strong><br />
</strong></div>
<table border="0">
<tbody>
<tr>
<td>
<p><div class="wp-caption alignnone" style="width: 160px"><a href="http://www.webmasterbulletin.net/wp-content/uploads/2010/05/screenshot.jpg" rel="lightbox[1150]"><img title="screenshot" src="http://www.webmasterbulletin.net/wp-content/uploads/2010/05/screenshot-150x150.jpg" alt="screenshot" width="150" height="150" /></a><p class="wp-caption-text">Main home page screenshot</p></div></td>
<td><a href="http://www.webmasterbulletin.net/wp-content/uploads/2010/05/customslide1.jpg" rel="lightbox[1150]"></a></p>
<p><div class="wp-caption alignnone" style="width: 160px"><a href="http://www.webmasterbulletin.net/wp-content/uploads/2010/05/widgetSidebar.jpg" rel="lightbox[1150]"><img title="widgetSidebar" src="http://www.webmasterbulletin.net/wp-content/uploads/2010/05/widgetSidebar-150x150.jpg" alt="widgetSidebar" width="150" height="150" /></a><p class="wp-caption-text">specific admin widget sidebar</p></div></td>
<td>
<p><div class="wp-caption alignnone" style="width: 160px"><a href="http://www.webmasterbulletin.net/wp-content/uploads/2010/05/customslide1.jpg" rel="lightbox[1150]"><img title="customslide1" src="http://www.webmasterbulletin.net/wp-content/uploads/2010/05/customslide1-150x150.jpg" alt="customslide1" width="150" height="150" /></a><p class="wp-caption-text">Custom post type for products</p></div></td>
</tr>
</tbody>
</table>
<div style="text-align: center;"><span style="color: #0000ee;"><span style="text-decoration: underline;"><br />
</span></span></div>
<ul class="tick">
<li><strong>wbFurnitureShop </strong>template is a customization of <strong>wordpress 3.0  template</strong> and includes :
<ul>
<li>the  home page with jquery slider (uses carousel) implemented as <strong>custom posts type</strong>,</li>
<li>the page and post templates : use the page for content and posts for products</li>
<li>custom query that  displays lastests posts as products thumbnails  with link to permalink.</li>
<li>Sidebar and footer use content widgets for maximum content management.</li>
</ul>
</li>
<li><strong>General layout features </strong>
<ul>
<li>fixed 750 px Layout (change width in style : #wrapper)</li>
<li>cufont enabled, distributed with Champagne &amp; Limousine</li>
<li>drop down menu enabled</li>
</ul>
</li>
<li><strong>Content display features </strong>
<ul>
<li>two column layout on homepage and product pages</li>
<li>single column layout on content pages</li>
<li>Lastest products remain on bottom of all pages for best user experience and internal site navigation</li>
</ul>
</li>
<li><strong>Wordpress features </strong>
<ul>
<li>thumbnail enabled</li>
<li>menu enabled (new function wp_nav_menu)</li>
<li>custom type for slide images</li>
<li>widget ready ( sidebar  + footer) &#8211; use textwidget to display text</li>
</ul>
</li>
<li><strong>Goodies </strong>
<ul>
<li> is distributed in a zip that contains
<ul>
<li>ttf or otf  font file, cufont, jquery,</li>
<li>sample images for testing and working with the template</li>
<li>PSD for the top logo and first slide</li>
</ul>
</li>
<li><strong>included : PDF install intructions <a href="http://www.webmasterbulletin.net/wp-content/uploads/2010/05/wbFurnitureShopTemplateInstallInstructions1.pdf">wbFurnitureShopTemplateInstallInstructions</a><br />
</strong></li>
</ul>
</li>
</ul>
<p><strong><a href="../shop/11-wordpress-furniture-shop-template.html">BUY NOW</a> on<a href="../shop/11-wordpress-furniture-shop-template.html"> webmasterbulletin.net/shop</a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webmasterbulletin.net/2010/05/wbfurnitureshop-wordpress-premium-theme/1150/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress password protected pages / blog</title>
		<link>http://www.webmasterbulletin.net/2010/04/wordpress-password-protected-pages/1129</link>
		<comments>http://www.webmasterbulletin.net/2010/04/wordpress-password-protected-pages/1129#comments</comments>
		<pubDate>Thu, 29 Apr 2010 09:42:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.webmasterbulletin.net/?p=1129</guid>
		<description><![CDATA[as of version 3 of Wordpress, posts and pages have three options for visibility  :

public : everyone sees the post,  in the list and directly from the permalink
password protected  post title is displayed only,  permalink works but content protected by password
private : not displayed in the list for guests (non connecte) visitors, permalink returns 404

What [...]]]></description>
			<content:encoded><![CDATA[<p>as of version 3 of Wordpress, posts and pages have three options for visibility  :</p>
<ul>
<li>public : everyone sees the post,  in the list and directly from the permalink</li>
<li>password protected  post title is displayed only,  permalink works but content protected by password</li>
<li>private : not displayed in the list for guests (non connecte) visitors, permalink returns 404</li>
</ul>
<p>What we&#8217;re looking for today is a solution that hides the post from the list but allows certain users to see it via permalink. Of course you can give the permalink and tell the user to identify via the wp-login page, but this can be complex for beginners. Ideally you would give the permalink of a private page and if not connecetd the visitor will be presented a login prompt. Here&#8217;s a review of available  solutions, tips and plugins</p>
<ul>
<li>Tip : post specific template that redirects user to standard login form<br />
<a href="http://www.rlmseo.com/blog/require-login-for-wordpress-pages/" target="_blank">http://www.rlmseo.com/blog/require-login-for-wordpress-pages/<br />
</a>found also at  : http://www.marketingtechblog.com/wordpress/login-content-wordpress-page-template/</li>
<li>a specific option allows coder to redirect user to a page after login  : http://brockangelo.com/2009/12/17/redirect-users-back-to-page-they-were-on/</li>
<li><a href="http://wordpress.org/extend/plugins/wp-private/" target="_blank">wp private plugin</a> displays a login form in place of the restricted part of the article</li>
<li><a href="http://www.chrisabernethy.com/wordpress-plugins/member-access/"><strong>Member Access plugin</strong></a><strong> overrides wordpress default settings in a new menu, and redirects the restricted pages to the login screen</strong>. Indeed, does the job perfectly but the fact that it doesn&#8217;t use the default wordpress might compromize compatibility with future versions. For the moment  I&#8217;ve tested it on v3.0 beta and works fine.</li>
<li><a href="http://wordpress.org/extend/plugins/user-access-manager/" target="_blank">User Access Manager</a> plugin does the same job but I haven&#8217;t tested it and seems to be inactive</li>
<li><a href="http://wordpress.org/extend/plugins/userbase-access-control/">UserBase Access Control</a> looks like a new promising development</li>
</ul>
<p>Other privacy options and plugins are available for Wordpress. We&#8217;ve tested for our <a href="http://www.poleouest.com/yves-rocher-espagne-intranet/">intranet project</a> some pugins that restrict the whole blog to registered users.</p>
<ul>
<li><a href="http://www.viper007bond.com/wordpress-plugins/registered-users-only/" target="_blank">Registered Users Only Plugin </a>comes with a simple set of options , that allow the syndication of news via public feed, useful  to publicize private work.</li>
<li><a href="http://wordpress.org/extend/plugins/private-wordpress/" target="_blank">Private wordpress plugin</a>, allows configuration of login message</li>
<li><a href="http://wordpress.org/extend/plugins/private-only/" target="_blank">Private Only Plugin </a>allows configuration of background image too</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.webmasterbulletin.net/2010/04/wordpress-password-protected-pages/1129/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress Plugin Review : SEO all in one</title>
		<link>http://www.webmasterbulletin.net/2009/01/wordpress-plugin-review-seo-all-in-one/611</link>
		<comments>http://www.webmasterbulletin.net/2009/01/wordpress-plugin-review-seo-all-in-one/611#comments</comments>
		<pubDate>Fri, 16 Jan 2009 14:48:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Components]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.webmasterbulletin.net/?p=611</guid>
		<description><![CDATA[The popular All-in-on SEO pack plugin for wordperss does more than just adding the essential meta fields to your articles and pages interfaces. For lazy writers, SEO pack will also create meta tags AUTOMATICALLY the content for these essential code addons that will boost your search engine positionning. A simple tag based configuration will allow [...]]]></description>
			<content:encoded><![CDATA[<p>The popular All-in-on SEO pack plugin for wordperss does more than just adding the essential meta fields to your articles and pages interfaces. For lazy writers, SEO pack will also create meta tags AUTOMATICALLY the content for these essential code addons that will boost your search engine positionning. A simple tag based configuration will allow you to set up categories, tag and archive pages optimisation via the TITLE tag, most important of all because it is the first thing visitors see when they look at search engines result pages.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webmasterbulletin.net/2009/01/wordpress-plugin-review-seo-all-in-one/611/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A corporate site with Wordpress</title>
		<link>http://www.webmasterbulletin.net/2008/10/a-corporate-site-with-wordpress/402</link>
		<comments>http://www.webmasterbulletin.net/2008/10/a-corporate-site-with-wordpress/402#comments</comments>
		<pubDate>Mon, 27 Oct 2008 07:32:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design showcase]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.webmasterbulletin.net/?p=402</guid>
		<description><![CDATA[Ever thought of using Wordpress as a CMS ? Today&#8217;s showcase features a perfect  example of wordpress implentation for corporate advertising. Served by efficient graphic design, 4 seasons entertainment implements an event page, a list of artists via wp-page-numbers plugin, and of course the usual suspect CFORMS.
Showcase your site on webmasterbulletin 
If you&#8217;re in [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-403 alignleft" title="4seasons" src="http://www.webmasterbulletin.net/wp-content/uploads/2008/10/4seasons.jpg" alt="" width="270" height="190" /><strong>Ever thought of using Wordpress as a CMS </strong>? Today&#8217;s showcase features a perfect  example of wordpress implentation for corporate advertising. Served by efficient graphic design, 4 seasons entertainment implements an <a href="http://4seasonsent.com/corporate/work/desert-events" target="_blank">event page</a>, a list of artists via<a href="http://4seasonsent.com/iaa/artists/duos/" target="_blank"> wp-page-numbers</a> plugin, and of course the usual suspect <a href="http://4seasonsent.com/corporate/contact" target="_blank">CFORMS</a>.</p>
<p><strong>Showcase your site on webmasterbulletin </strong></p>
<p>If you&#8217;re in the business of creating stunning websites powered by efficient opensource or commercial CMS, let the world know : <a href="http://www.webmasterbulletin.net/showcase" target="_blank">submit your work for review at webmasterbulletin showcase</a> !!</p>
<p><strong>Today&#8217;s showcase : 4 seasons<br />
</strong></p>
<p>4 Seasons Entertainment &amp; Events has been bringing life to many major events in Dubai, U.A.E for over a decade. 4 Seasons delivers results, time and again. We pride ourselves to be one of the few agencies that renders 360 solutions for any type of event. All our resources are in-house, giving us the flexibility to support any event from small internal meetings to large conference and awards dinners or product launches with efficiency and precision.</p>
<p><a href="http://4seasonsent.com/corporate/work" target="_blank">Link : 4 Seasons Entertainment<br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webmasterbulletin.net/2008/10/a-corporate-site-with-wordpress/402/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog design showcase : Foozoo</title>
		<link>http://www.webmasterbulletin.net/2008/09/blog-design-showcase-foozoo/254</link>
		<comments>http://www.webmasterbulletin.net/2008/09/blog-design-showcase-foozoo/254#comments</comments>
		<pubDate>Tue, 09 Sep 2008 07:13:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design showcase]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.webmasterbulletin.net/?p=254</guid>
		<description><![CDATA[
The Foozoo design studio blog does not display images on its front page : black and white is the color of sobriety. Inside pages will feature, obviously, images, plus a nice soft blue font that highlights margins and  Based on the very simple Hemingway-19 theme for wordpress, Foozoo adds a few very interesting plugins. Most [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-256" title="the-foozoo-design-blog-500" src="http://www.webmasterbulletin.net/wp-content/uploads/2008/09/the-foozoo-design-blog-500.png" alt="" width="500" height="381" /></p>
<p>The Foozoo design studio blog does not display images on its front page : black and white is the color of sobriety. Inside pages will feature, obviously, images, plus a nice soft blue font that highlights margins and  Based on the very simple Hemingway-19 theme for wordpress, Foozoo adds a few very interesting plugins. Most interesting is the <a href="http://www.roytanck.com/2008/03/15/wp-cumulus-released/">WP-cumulus </a>plugin that transforms the original tag cloud to a real Flash based sphere with mouse 3D effect.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webmasterbulletin.net/2008/09/blog-design-showcase-foozoo/254/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Wordpress Plugin : blogroll pages</title>
		<link>http://www.webmasterbulletin.net/2008/09/wordpress-plugin-blogroll-pages/204</link>
		<comments>http://www.webmasterbulletin.net/2008/09/wordpress-plugin-blogroll-pages/204#comments</comments>
		<pubDate>Mon, 01 Sep 2008 09:27:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.webmasterbulletin.net/?p=204</guid>
		<description><![CDATA[We provide here a modification of Mark Allen &#8216; Blogroll page plugin, that inserts blogroll into any page of your blog . What we did here is modify his plugin to create more than just a list : we make pages out the blogroll list, one page per category. The first page lists categories with [...]]]></description>
			<content:encoded><![CDATA[<p>We provide here a modification of <a href="http://www.websitehostingiq.net/blogroll-page-plugin/" target="_blank">Mark Allen &#8216; Blogroll page</a> plugin, that inserts blogroll into any page of your blog . What we did here is modify his plugin to create more than just a list : we make pages out the blogroll list, one page per category. The first page lists categories with link to blogroll list for this category. Slight Modification but useful fo SEO. Future implementations should modify title page to integrate category description. Enjoy and let us know how it goes.<a href="http://www.ecolopop.info/documentation/les-indispensables-du-net" target="_blank"></a></p>
<ul>
<li><a href="http://www.ecolopop.info/documentation/les-indispensables-du-net" target="_blank"> Demo here</a></li>
<li><a href="http://www.webmasterbulletin.net/wp-content/uploads/2008/09/blogroll-links-pages.zip">Download : blogroll-links-pages</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.webmasterbulletin.net/2008/09/wordpress-plugin-blogroll-pages/204/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
