<?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>Vout.nl</title>
	<atom:link href="http://www.vout.nl/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vout.nl</link>
	<description>Building websites that suck less since 1999</description>
	<lastBuildDate>Fri, 11 May 2012 09:19:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Magento, kortingsregels gebruiken voor toeslagen.</title>
		<link>http://www.vout.nl/blog/magento-kortingsregels-gebruiken-voor-toeslagen/</link>
		<comments>http://www.vout.nl/blog/magento-kortingsregels-gebruiken-voor-toeslagen/#comments</comments>
		<pubDate>Fri, 11 May 2012 09:02:13 +0000</pubDate>
		<dc:creator>Reind</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[rembours]]></category>
		<category><![CDATA[toeslag]]></category>

		<guid isPermaLink="false">http://www.vout.nl/?p=405</guid>
		<description><![CDATA[<img width="200" height="100" src="http://www.vout.nl/wp-content/uploads/2012/05/tnt_rembours-200x100.jpg" class="attachment-featured-image wp-post-image" alt="tnt_rembours" title="tnt_rembours" />In Magento 1.7 is de optie Cash on delivery toegevoegd aan de betaalmethoden, bij ons beter bekend als Rembours zending. Geweldig want dat scheelt weer een extensie van een externe partij! Er is alleen 1 kleine maar&#8230; En die maar &#8230; <a href="http://www.vout.nl/blog/magento-kortingsregels-gebruiken-voor-toeslagen/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<img width="200" height="100" src="http://www.vout.nl/wp-content/uploads/2012/05/tnt_rembours-200x100.jpg" class="attachment-featured-image wp-post-image" alt="tnt_rembours" title="tnt_rembours" /><p>In Magento 1.7 is de optie Cash on delivery toegevoegd aan de betaalmethoden, bij ons beter bekend als Rembours zending. Geweldig want dat scheelt weer een extensie van een externe partij! Er is alleen 1 kleine maar&#8230;</p>
<p>En die maar is dat je geen toeslag in kunt vullen voor de betaalmethode &#8216;Cash on delivery&#8217; en dat is jammer want daardoor wordt de betaalmethode een stuk minder bruikbaar. Een rembours zending kost hier in NL namelijk (zo even uit het blote hoofd) een kleine 13 euro en om die kosten nou geheel voor eigen rekening te nemen als webshop&#8230;</p>
<p>Toch is er een oplossing in de vorm van standaard Magento prijsregels en wat code modificatie. Wanneer je onderstaand exact opvolgt zul je aan het eind de beschikking hebben over de mogelijkheid om negatieve waarden in te voeren bij een kortingsregel. Een -15,00 als opgegeven korting binnen de prijsregel wordt dan dus een toeslag van 15 euro!</p>
<p>LET OP: we kopieren files van app/code/core naar app/etc/local om te voorkomen dat bij de eerste de beste Magento upgrade onze gemodificeerde files worden overgeschreven.</p>
<p><strong>Open de file:</strong> <em>app/code/core/Mage/rule/model/Abstract.php</em></p>
<p><strong>Zoek de regel:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">hasDiscountAmount</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>int<span style="color: #009900;">&#41;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getDiscountAmount</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&lt;</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		Mage<span style="color: #339933;">::</span><span style="color: #004000;">throwException</span><span style="color: #009900;">&#40;</span>Mage<span style="color: #339933;">::</span><span style="color: #004000;">helper</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'rule'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span>__<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Invalid discount amount.'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p><strong>Vervang deze door:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">/*
if ($this-&gt;hasDiscountAmount()) {
	if ((int)$this-&gt;getDiscountAmount() &lt; 0) {
		Mage::throwException(Mage::helper('rule')-&gt;__('Invalid discount amount.'));
	}
}
*/</span></pre></td></tr></table></div>

<p>Sla deze file nu op en plaats hem in <em>app/code/<strong>local</strong>/Mage/rule/model/rule.php</em></p>
<p><strong>Open nu de file:</strong> app/code/core/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Actions.php</p>
<p><strong>Zoek regel:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$fieldset</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">addField</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'discount_amount'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'text'</span><span style="color: #339933;">,</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
            <span style="color: #0000ff;">'name'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'discount_amount'</span><span style="color: #339933;">,</span>
            <span style="color: #0000ff;">'required'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">,</span>
            <span style="color: #0000ff;">'class'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'validate-not-negative-number'</span><span style="color: #339933;">,</span>
            <span style="color: #0000ff;">'label'</span> <span style="color: #339933;">=&gt;</span> Mage<span style="color: #339933;">::</span><span style="color: #004000;">helper</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'salesrule'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span>__<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Discount Amount'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
        <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p><strong><br />
Vervang door:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$fieldset</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">addField</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'discount_amount'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'text'</span><span style="color: #339933;">,</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
            <span style="color: #0000ff;">'name'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'discount_amount'</span><span style="color: #339933;">,</span>
            <span style="color: #0000ff;">'required'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">,</span>
            <span style="color: #666666; font-style: italic;">//'class' =&gt; 'validate-not-negative-number',</span>
            <span style="color: #0000ff;">'label'</span> <span style="color: #339933;">=&gt;</span> Mage<span style="color: #339933;">::</span><span style="color: #004000;">helper</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'salesrule'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span>__<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Discount Amount'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
        <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Sla de file op en plaats hem onder <em>app/code/<strong>local</strong>/Mage/Adminhtml/Block/Promo/Quote/Edit/Tab/Actions.php</em></p>
<p><strong>Open nu de file:</strong> <em>app/code/core/Mage/SaleRule/Model/Validator.php</em><br />
<strong><br />
Zoek regel:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$cartRules</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$rule</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getId</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">&gt;</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$quoteAmount</span>        <span style="color: #339933;">=</span> <span style="color: #000088;">$quote</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getStore</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">convertPrice</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$cartRules</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$rule</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getId</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p><strong><br />
Vervang door (alleen een < toevoegen, rond regel 28):</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$cartRules</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$rule</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getId</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">&lt;&gt;</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$quoteAmount</span>        <span style="color: #339933;">=</span> <span style="color: #000088;">$quote</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getStore</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">convertPrice</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$cartRules</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$rule</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">getId</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Sla de file nu op onder: <em>app/code/<strong>local</strong>/Mage/SaleRule/Model/Validator.php</em></p>
<p>Nu is het mogelijk om een &#8216;negatieve&#8217; waarde in te voeren binnen een prijsregel in Magento. Hier onder een voorbeeld van hoe ik dat gedaan heb voor een klant van ons,</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vout.nl/blog/magento-kortingsregels-gebruiken-voor-toeslagen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Selectief scripts in laden per pagina binnen WordPress</title>
		<link>http://www.vout.nl/blog/selectief-scripts-in-laden-binnen-pagina/</link>
		<comments>http://www.vout.nl/blog/selectief-scripts-in-laden-binnen-pagina/#comments</comments>
		<pubDate>Sun, 22 Apr 2012 18:12:44 +0000</pubDate>
		<dc:creator>Reind</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[clean]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.vout.nl/?p=385</guid>
		<description><![CDATA[<img width="200" height="100" src="http://www.vout.nl/wp-content/uploads/2012/04/code-200x100.jpg" class="attachment-featured-image wp-post-image" alt="code" title="code" />Iedereen die wel eens bezig is geweest met het maken van een WordPress template en het installeren van modules weet dat er nogal wat scripts ingeladen worden. Het gros van de scripts gebruik je echter maar sporadisch op een bepaald &#8230; <a href="http://www.vout.nl/blog/selectief-scripts-in-laden-binnen-pagina/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<img width="200" height="100" src="http://www.vout.nl/wp-content/uploads/2012/04/code-200x100.jpg" class="attachment-featured-image wp-post-image" alt="code" title="code" /><p>Iedereen die wel eens bezig is geweest met het maken van een WordPress template en het installeren van modules weet dat er nogal wat scripts ingeladen worden. Het gros van de scripts gebruik je echter maar sporadisch op een bepaald type pagina. Zo hoef je de scripts van ContactForm7 alleen te laden op pagina&#8217;s waar je de formulieren ook daadwerkelijk gebruikt.</p>
<p>Tijd voor een bezem&#8230;<span id="more-385"></span></p>
<p><strong>Voorbeeldje,</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>link href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/wp-content/themes/yoo_quantum_wp/favicon.ico&quot;</span> rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;shortcut icon&quot;</span> type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;image/x-icon&quot;</span> <span style="color: #339933;">/&gt;</span> 
<span style="color: #339933;">&lt;</span>link rel<span style="color: #339933;">=</span><span style="color: #0000ff;">'stylesheet'</span> id<span style="color: #339933;">=</span><span style="color: #0000ff;">'contact-form-7-css'</span>  href<span style="color: #339933;">=</span><span style="color: #0000ff;">'http://www.x-studios.nl/wp-content/plugins/contact-form-7/styles.css?ver=3.1.2'</span> type<span style="color: #339933;">=</span><span style="color: #0000ff;">'text/css'</span> media<span style="color: #339933;">=</span><span style="color: #0000ff;">'all'</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #0000ff;">'text/javascript'</span> src<span style="color: #339933;">=</span><span style="color: #0000ff;">'http://www.x-studios.nl/wp-includes/js/jquery/jquery.js?ver=1.7.1'</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>link rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;stylesheet&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/wp-content/plugins/widgetkit1/cache/widgetkit-ff66d4ea.css&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/javascript&quot;</span> src<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/wp-content/plugins/widgetkit1/cache/widgetkit-7dbe2392.js&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>link rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;stylesheet&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/wp-content/themes/yoo_quantum_wp/css/base.css&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;</span>link rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;stylesheet&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/wp-content/themes/yoo_quantum_wp/css/layout.css&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;</span>link rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;stylesheet&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/wp-content/themes/yoo_quantum_wp/css/menus.css&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;</span>style<span style="color: #339933;">&gt;.</span>wrapper <span style="color: #009900;">&#123;</span> width<span style="color: #339933;">:</span> 980px<span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span>
<span style="color: #666666; font-style: italic;">#maininner { width: 980px; }
</span><span style="color: #666666; font-style: italic;">#menu .dropdown { width: 250px; }
</span><span style="color: #666666; font-style: italic;">#menu .columns2 { width: 500px; }
</span><span style="color: #666666; font-style: italic;">#menu .columns3 { width: 750px; }
</span><span style="color: #666666; font-style: italic;">#menu .columns4 { width: 1000px; }&lt;/style&gt;
</span><span style="color: #339933;">&lt;</span>link rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;stylesheet&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/wp-content/themes/yoo_quantum_wp/css/modules.css&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;</span>link rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;stylesheet&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/wp-content/themes/yoo_quantum_wp/css/tools.css&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;</span>link rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;stylesheet&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/wp-content/themes/yoo_quantum_wp/css/system.css&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;</span>link rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;stylesheet&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/wp-content/themes/yoo_quantum_wp/css/extensions.css&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;</span>link rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;stylesheet&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/wp-content/themes/yoo_quantum_wp/css/custom.css&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;</span>link rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;stylesheet&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/wp-content/themes/yoo_quantum_wp/css/color/orange.css&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;</span>link rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;stylesheet&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/wp-content/themes/yoo_quantum_wp/css/font1/droidsans.css&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;</span>link rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;stylesheet&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/wp-content/themes/yoo_quantum_wp/css/font2/droidsans.css&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;</span>link rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;stylesheet&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/wp-content/themes/yoo_quantum_wp/css/font3/droidsans.css&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;</span>link rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;stylesheet&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/wp-content/themes/yoo_quantum_wp/css/style.css&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;</span>link rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;stylesheet&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/wp-content/themes/yoo_quantum_wp/css/print.css&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;</span>link rel<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;stylesheet&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/wp-content/themes/yoo_quantum_wp/fonts/droidsans.css&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/javascript&quot;</span> src<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/wp-content/themes/yoo_quantum_wp/warp/js/warp.js&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/javascript&quot;</span> src<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/wp-content/themes/yoo_quantum_wp/warp/js/accordionmenu.js&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/javascript&quot;</span> src<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/wp-content/themes/yoo_quantum_wp/warp/js/dropdownmenu.js&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/javascript&quot;</span> src<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;/wp-content/themes/yoo_quantum_wp/js/template.js&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>Dat kan dus beter want het gros van de scripts zal maar op een bepaald aantal pagina&#8217;s gebruikt worden. Zo installeren een hoop mensen ContactForm7 maar is het echt niet nodig de CSS en Javascripts op iedere pagina in te laden.</p>
<p>Sleutel voor de oplossing is handig gebruik maken van de &#8216;conditional tags&#8217; die WordPress je biedt. <a title="Wordpress conditional tags" href="http://codex.wordpress.org/Conditional_Tags" target="_blank">Hier vind je een complete lijst van de mogelijke tags</a>.</p>
<p>Wanneer je alle mogelijkheden in je header.php op gaat zitten nemen wordt die echter weer een zooitje dus heb ik er in dit geval voor gekozen om een aparte header file te maken waar alle extra jQuery scriptjes in geladen worden middels de &#8216;conditional tags&#8217;.</p>
<p>Om deze te includen kan er gebruik gemaakt worden van de <em>&#8220;get_header(&#8216;scripts&#8217;)&#8221;</em> waarbij de waarde <em>&#8220;scripts&#8221;</em> staat voor het laatste deel van de file naam, in dit geval heet mijn file dus <em>&#8220;header-scripts.php&#8221;</em> welke naast de standaard header.php geplaatst is in de template directory.</p>
<p><strong>header.php,</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; media=&quot;all&quot; href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'stylesheet_url'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; /&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>is_page<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'contact'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #666666; font-style: italic;">// Lets add some scripts for the contact page</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'wpcf7_enqueue_scripts'</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		wpcf7_enqueue_scripts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		wpcf7_enqueue_styles<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span><span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;!-- Wordpress generated code --&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_enqueue_script<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;jquery&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> is_singular<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> get_option<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'thread_comments'</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span>
		wp_enqueue_script<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'comment-reply'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		wp_head<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;!-- Custom jQuery library includes --&gt;
&lt;script src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/js/jquery.fancybox.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/js/jquery.easing.js&quot;&gt;&lt;/script&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>is_single<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> in_category<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'gallery'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #666666; font-style: italic;">// To check if we need Masonry... it's only needed in category's listed below ?&gt;</span>
<span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;&lt;?php bloginfo('template_directory'); ?&gt;/js/jquery.masonry.js&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;!-- Some other jQuery stuff, tools document etcetera --&gt;
&lt;script src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/js/jquery.tools.js&quot;&gt;&lt;/script&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> get_header<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'scripts'</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p><strong>header-scripts.php,</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #666666; font-style: italic;">// Only load this if needed, on single pages!</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>is_single<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
    &lt;!-- Single page so add the jQuery stuff we need --&gt;
	&lt;script type=&quot;text/javascript&quot;&gt;
	jQuery(document).ready(function($) {
		$(function () {
			$(&quot;#content_post_info&quot;).stickySidebar({
        });
      });
&nbsp;
	  <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>in_category<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'gallery'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
	  &lt;!-- Since we are on a gallery page, add the masonry stuff
	  $('.gallery').masonry({
			columnWidth: 5,
			itemSelector: '.gallery-item'
		});
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
	 });
    &lt;/script&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p><!-- Google Analytics code --><br />
<script type="text/javascript">
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-24468173-2']);
  _gaq.push(['_trackPageview']);</p>
<p>  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
</script></p>
<p><strong>Opgeruimd staat netjes!</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #0000ff;">'text/javascript'</span> src<span style="color: #339933;">=</span><span style="color: #0000ff;">'http://www.vout.nl/wp-includes/js/jquery/jquery.js?ver=1.7.1'</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;!--</span> Custom jQuery library includes <span style="color: #339933;">--&gt;</span>
<span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://www.vout.nl/wp-content/themes/vout/js/jquery.fancybox.js&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://www.vout.nl/wp-content/themes/vout/js/jquery.easing.js&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;!--</span> Some other jQuery stuff<span style="color: #339933;">,</span> tools document etcetera <span style="color: #339933;">--&gt;</span>
<span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://www.vout.nl/wp-content/themes/vout/js/jquery.tools.js&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;!--</span> Google Analytics code <span style="color: #339933;">--&gt;</span>
<span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
  <span style="color: #000000; font-weight: bold;">var</span> _gaq <span style="color: #339933;">=</span> _gaq <span style="color: #339933;">||</span> <span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
  _gaq<span style="color: #339933;">.</span>push<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'_setAccount'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'UA-24468173-2'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  _gaq<span style="color: #339933;">.</span>push<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'_trackPageview'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">var</span> ga <span style="color: #339933;">=</span> document<span style="color: #339933;">.</span>createElement<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'script'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> ga<span style="color: #339933;">.</span>type <span style="color: #339933;">=</span> <span style="color: #0000ff;">'text/javascript'</span><span style="color: #339933;">;</span> ga<span style="color: #339933;">.</span>async <span style="color: #339933;">=</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">;</span>
    ga<span style="color: #339933;">.</span>src <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'https:'</span> <span style="color: #339933;">==</span> document<span style="color: #339933;">.</span>location<span style="color: #339933;">.</span>protocol ? <span style="color: #0000ff;">'https://ssl'</span> <span style="color: #339933;">:</span> <span style="color: #0000ff;">'http://www'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #0000ff;">'.google-analytics.com/ga.js'</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">var</span> s <span style="color: #339933;">=</span> document<span style="color: #339933;">.</span>getElementsByTagName<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'script'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> s<span style="color: #339933;">.</span>parentNode<span style="color: #339933;">.</span>insertBefore<span style="color: #009900;">&#40;</span>ga<span style="color: #339933;">,</span> s<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">&lt;/script&gt;</span></pre></td></tr></table></div>

<p>Overigens kan bovenstaand ook nog ontdaan worden van de Fancybox en Easing library&#8217;s op de frontpage op deze website. Het is dus een beetje puzzelen om te zien wat je wel en niet nodig hebt op bepaalde pagina&#8217;s maar wanneer dat eenmaal gebeurd is houd je pagina&#8217;s over waarbij geen onnodige scripts geladen worden en dus kleiner zijn.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vout.nl/blog/selectief-scripts-in-laden-binnen-pagina/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Infographics&#8230;</title>
		<link>http://www.vout.nl/gallery/infographics/</link>
		<comments>http://www.vout.nl/gallery/infographics/#comments</comments>
		<pubDate>Sun, 22 Apr 2012 11:02:21 +0000</pubDate>
		<dc:creator>Reind</dc:creator>
				<category><![CDATA[Gallery]]></category>

		<guid isPermaLink="false">http://www.vout.nl/?p=375</guid>
		<description><![CDATA[Infographics, omdat plaatjes soms meer kunnen zeggen dan 1000 woorden. <a href="http://www.vout.nl/gallery/infographics/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[
<a href='http://www.vout.nl/gallery/infographics/attachment/current_state_of_social_networks/' title='current_state_of_social_networks'><img width="150" height="844" src="http://www.vout.nl/wp-content/uploads/2012/04/current_state_of_social_networks-150x844.jpg" class="attachment-thumbnail" alt="current_state_of_social_networks" title="current_state_of_social_networks" /></a>
<a href='http://www.vout.nl/gallery/infographics/attachment/http_codes_illustration/' title='http_codes_illustration'><img width="150" height="324" src="http://www.vout.nl/wp-content/uploads/2012/04/http_codes_illustration-150x324.gif" class="attachment-thumbnail" alt="http_codes_illustration" title="http_codes_illustration" /></a>
<a href='http://www.vout.nl/gallery/infographics/attachment/seo_infographic/' title='seo_infographic'><img width="150" height="615" src="http://www.vout.nl/wp-content/uploads/2012/04/seo_infographic-150x615.jpg" class="attachment-thumbnail" alt="seo_infographic" title="seo_infographic" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.vout.nl/gallery/infographics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Verbouwing&#8230;</title>
		<link>http://www.vout.nl/gallery/test-gallery-post/</link>
		<comments>http://www.vout.nl/gallery/test-gallery-post/#comments</comments>
		<pubDate>Sun, 22 Apr 2012 08:13:26 +0000</pubDate>
		<dc:creator>Reind</dc:creator>
				<category><![CDATA[Gallery]]></category>
		<category><![CDATA[banckertstraat]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[verbouwing]]></category>

		<guid isPermaLink="false">http://www.vout.nl/?p=292</guid>
		<description><![CDATA[Wat foto's van de verbouwing aan de Banckertstraat om de 'gallery' page een beetje te testen. Masonry effect zou in dit geval zijn werk moeten doen terwijl het op andere pagina's niet geladen wordt.  <a href="http://www.vout.nl/gallery/test-gallery-post/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[
<a href='http://www.vout.nl/gallery/test-gallery-post/attachment/verbouwing_00/' title='verbouwing_00'><img width="150" height="112" src="http://www.vout.nl/wp-content/uploads/2012/04/verbouwing_00-150x112.jpg" class="attachment-thumbnail" alt="verbouwing_00" title="verbouwing_00" /></a>
<a href='http://www.vout.nl/gallery/test-gallery-post/attachment/verbouwing_01/' title='verbouwing_01'><img width="150" height="112" src="http://www.vout.nl/wp-content/uploads/2012/04/verbouwing_01-150x112.jpg" class="attachment-thumbnail" alt="verbouwing_01" title="verbouwing_01" /></a>
<a href='http://www.vout.nl/gallery/test-gallery-post/attachment/verbouwing_02/' title='verbouwing_02'><img width="150" height="112" src="http://www.vout.nl/wp-content/uploads/2012/04/verbouwing_02-150x112.jpg" class="attachment-thumbnail" alt="verbouwing_02" title="verbouwing_02" /></a>
<a href='http://www.vout.nl/gallery/test-gallery-post/attachment/verbouwing_03/' title='verbouwing_03'><img width="150" height="112" src="http://www.vout.nl/wp-content/uploads/2012/04/verbouwing_03-150x112.jpg" class="attachment-thumbnail" alt="verbouwing_03" title="verbouwing_03" /></a>
<a href='http://www.vout.nl/gallery/test-gallery-post/attachment/verbouwing_04/' title='verbouwing_04'><img width="150" height="200" src="http://www.vout.nl/wp-content/uploads/2012/04/verbouwing_04-150x200.jpg" class="attachment-thumbnail" alt="verbouwing_04" title="verbouwing_04" /></a>
<a href='http://www.vout.nl/gallery/test-gallery-post/attachment/verbouwing_05/' title='verbouwing_05'><img width="150" height="200" src="http://www.vout.nl/wp-content/uploads/2012/04/verbouwing_05-150x200.jpg" class="attachment-thumbnail" alt="verbouwing_05" title="verbouwing_05" /></a>
<a href='http://www.vout.nl/gallery/test-gallery-post/attachment/verbouwing_06/' title='verbouwing_06'><img width="150" height="200" src="http://www.vout.nl/wp-content/uploads/2012/04/verbouwing_06-150x200.jpg" class="attachment-thumbnail" alt="verbouwing_06" title="verbouwing_06" /></a>
<a href='http://www.vout.nl/gallery/test-gallery-post/attachment/verbouwing_07/' title='verbouwing_07'><img width="150" height="112" src="http://www.vout.nl/wp-content/uploads/2012/04/verbouwing_07-150x112.jpg" class="attachment-thumbnail" alt="verbouwing_07" title="verbouwing_07" /></a>
<a href='http://www.vout.nl/gallery/test-gallery-post/attachment/verbouwing_08/' title='verbouwing_08'><img width="150" height="112" src="http://www.vout.nl/wp-content/uploads/2012/04/verbouwing_08-150x112.jpg" class="attachment-thumbnail" alt="verbouwing_08" title="verbouwing_08" /></a>
<a href='http://www.vout.nl/gallery/test-gallery-post/attachment/verbouwing_09/' title='verbouwing_09'><img width="150" height="200" src="http://www.vout.nl/wp-content/uploads/2012/04/verbouwing_09-150x200.jpg" class="attachment-thumbnail" alt="verbouwing_09" title="verbouwing_09" /></a>
<a href='http://www.vout.nl/gallery/test-gallery-post/attachment/verbouwing_10/' title='verbouwing_10'><img width="150" height="112" src="http://www.vout.nl/wp-content/uploads/2012/04/verbouwing_10-150x112.jpg" class="attachment-thumbnail" alt="verbouwing_10" title="verbouwing_10" /></a>
<a href='http://www.vout.nl/gallery/test-gallery-post/attachment/verbouwing_11/' title='verbouwing_11'><img width="150" height="112" src="http://www.vout.nl/wp-content/uploads/2012/04/verbouwing_11-150x112.jpg" class="attachment-thumbnail" alt="verbouwing_11" title="verbouwing_11" /></a>
<a href='http://www.vout.nl/gallery/test-gallery-post/attachment/verbouwing_12/' title='verbouwing_12'><img width="150" height="200" src="http://www.vout.nl/wp-content/uploads/2012/04/verbouwing_12-150x200.jpg" class="attachment-thumbnail" alt="verbouwing_12" title="verbouwing_12" /></a>
<a href='http://www.vout.nl/gallery/test-gallery-post/attachment/verbouwing_13/' title='verbouwing_13'><img width="150" height="200" src="http://www.vout.nl/wp-content/uploads/2012/04/verbouwing_13-150x200.jpg" class="attachment-thumbnail" alt="verbouwing_13" title="verbouwing_13" /></a>
<a href='http://www.vout.nl/gallery/test-gallery-post/attachment/verbouwing_14/' title='verbouwing_14'><img width="150" height="200" src="http://www.vout.nl/wp-content/uploads/2012/04/verbouwing_14-150x200.jpg" class="attachment-thumbnail" alt="verbouwing_14" title="verbouwing_14" /></a>
<a href='http://www.vout.nl/gallery/test-gallery-post/attachment/verbouwing_15/' title='verbouwing_15'><img width="150" height="112" src="http://www.vout.nl/wp-content/uploads/2012/04/verbouwing_15-150x112.jpg" class="attachment-thumbnail" alt="verbouwing_15" title="verbouwing_15" /></a>
<a href='http://www.vout.nl/gallery/test-gallery-post/attachment/verbouwing_16/' title='verbouwing_16'><img width="150" height="100" src="http://www.vout.nl/wp-content/uploads/2012/04/verbouwing_16-150x100.jpg" class="attachment-thumbnail" alt="verbouwing_16" title="verbouwing_16" /></a>
<a href='http://www.vout.nl/gallery/test-gallery-post/attachment/verbouwing_17/' title='verbouwing_17'><img width="150" height="225" src="http://www.vout.nl/wp-content/uploads/2012/04/verbouwing_17-150x225.jpg" class="attachment-thumbnail" alt="verbouwing_17" title="verbouwing_17" /></a>
<a href='http://www.vout.nl/gallery/test-gallery-post/attachment/verbouwing_18/' title='verbouwing_18'><img width="150" height="225" src="http://www.vout.nl/wp-content/uploads/2012/04/verbouwing_18-150x225.jpg" class="attachment-thumbnail" alt="verbouwing_18" title="verbouwing_18" /></a>
<a href='http://www.vout.nl/gallery/test-gallery-post/attachment/verbouwing_19/' title='verbouwing_19'><img width="150" height="225" src="http://www.vout.nl/wp-content/uploads/2012/04/verbouwing_19-150x225.jpg" class="attachment-thumbnail" alt="verbouwing_19" title="verbouwing_19" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.vout.nl/gallery/test-gallery-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress, imagelinks standaard openen in een lightbox</title>
		<link>http://www.vout.nl/blog/imagelinks-lightbox/</link>
		<comments>http://www.vout.nl/blog/imagelinks-lightbox/#comments</comments>
		<pubDate>Fri, 20 Apr 2012 20:43:19 +0000</pubDate>
		<dc:creator>Reind</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[fancybox]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.vout.nl/?p=257</guid>
		<description><![CDATA[<img width="200" height="100" src="http://www.vout.nl/wp-content/uploads/2012/04/fancybox-200x100.jpg" class="attachment-featured-image wp-post-image" alt="fancybox" title="fancybox" />Wanneer je binnen WordPress een afbeelding invoegt koppelt het CMS daar in de meeste gevallen ook een link aan. Deze link leid naar de afbeelding op volledige grote in het huidige browser venster&#8230; leuk en aardig maar je bezoeker is &#8230; <a href="http://www.vout.nl/blog/imagelinks-lightbox/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<img width="200" height="100" src="http://www.vout.nl/wp-content/uploads/2012/04/fancybox-200x100.jpg" class="attachment-featured-image wp-post-image" alt="fancybox" title="fancybox" /><p>Wanneer je binnen WordPress een afbeelding invoegt koppelt het CMS daar in de meeste gevallen ook een link aan. Deze link leid naar de afbeelding op volledige grote in het huidige browser venster&#8230; leuk en aardig maar je bezoeker is wel van de pagina weg geleid.<span id="more-257"></span></p>
<p><strong>Dat kan beter!</strong><br />
Het is namelijk helemaal niet nodig om een afbeelding in een nieuw venster te openen. In het gros van de gevallen kan dat namelijk prima in een lightbox waardoor je bezoeker niet van de pagina weg wordt geleid.</p>
<p>Nu kun je voor bovenstaand ongewtijfeld een plug-in installeren echter ben ik persoonlijk niet zo van het installeren van plug-ins voor simpele zaken als deze. Handmatig toevoegen is namelijk helemaal niet zo moeilijk.</p>
<p><strong>Let wel, enige kennis van HTML is vereist!</strong></p>
<p><strong>Fancybox.</strong><br />
Er vanuit gaande dat men standaard jQuery al laadt binnen WordPress hoeven we alleen nog maar een lightbox script toe te voegen. Ik gebruik zelf altijd <a title="Fancybox download" href="http://fancyapps.com/fancybox/" target="_blank">FancyBox</a>. Een lightbox script waar je eigenlijk alles in kunt weergeven. Van <a title="Youtube movie in Fancybox" href="http://www.athleticshop.nl/nike-schoenen-en-sneakers-1/nike-air-classic-bw-122-c80" target="_blank">Youtube filmpje</a> tot aan een <a title="Image gallery" href="http://kleinoostenrijk.nl/snowboards/snowboards-heren/snowboards/11-burton-custom-flying-v-7.html" target="_blank">collectie van product images</a>.</p>
<p>Voor het gemak heb ik even een uitgeklede download gemaakt van <a title="Uitgeklede versie Fancybox" href="http://downloads.vout.nl/fancybox_wordpress.zip" target="_blank">Fancybox en deze is hier te downloaden</a>.</p>
<p>Na het downloaden en extracten van de zip file is het tijd om zaken toe te gaan voegen aan de template. Plaats de files in de juiste directory&#8217;s en controleer in het geval van de afbeeldingen of de paden nog wel correct zijn in de CSS.</p>
<p><a href="http://www.vout.nl/wp-content/uploads/2012/04/ftp_structure.jpg" class="fancybox" rel="gallery" ><img class="alignnone size-full wp-image-258" title="ftp_structure" src="http://www.vout.nl/wp-content/uploads/2012/04/ftp_structure.jpg" alt="FTP structuur WordPress template" width="700" height="170" /></a></p>
<p>Na het uploaden wordt het tijd om de files daadwerkelijk te gaan laden. Open als eerste de header.php van je template (er vanuit gaande dat deze aanwezig is, anders uitzoeken waar de &lt;head&gt; &lt;/head&gt; in gegenereerd wordt) en voeg daar de volgende regels aan toe,</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; media=&quot;all&quot; href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/css/fancybox.css&quot;&gt;&quot; /&gt;
&lt;script src=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'template_directory'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>/js/jquery.fancybox.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
jQuery(document).ready(function($) {
	$(&quot;.fancybox&quot;).fancybox();
});
&lt;/script&gt;</pre></td></tr></table></div>

<p>Het kan zijn dat je de regels een beetje moet ordenen, css regels bij elkaar, js regels bij elkaar etcetera (ik houd van netjes ;) ) maar in de basis zou bovenstaand gewoon prima moeten werken.</p>
<p>Uploaden en controleren of alles netjes geladen wordt door de pagina bron te bekijken. Je zult daarin nu links naar de CSS, het Fancybox script + de trigger tegen moeten komen.</p>
<p><strong>Functions.php</strong><br />
Nu wordt het tijd om wanneer er een afbeelding + link naar grotere afbeelding ingevoegd wordt deze automatisch te openen in een Fancybox. Open de <strong>functions.php</strong> van je template, helemaal onderaan in de <strong>functions.php</strong> voeg je de volgende regels toe,</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// Add automated fancybox support</span>
add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'the_content'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'addfancyboxclass'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">12</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'get_comment_text'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'addfancyboxclass'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">function</span> addfancyboxclass <span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$post</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$pattern</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;/&lt;a(.*?)href=('|<span style="color: #000099; font-weight: bold;">\&quot;</span>)([^&gt;]*).(bmp|gif|jpeg|jpg|png)('|<span style="color: #000099; font-weight: bold;">\&quot;</span>)(.*?)&gt;(.*?)&lt;\/a&gt;/i&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$replacement</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'&lt;a$1href=$2$3.$4$5 class=&quot;fancybox&quot;$6&gt;$7&lt;/a&gt;'</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$content</span> <span style="color: #339933;">=</span> <span style="color: #990000;">preg_replace</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$pattern</span><span style="color: #339933;">,</span> <span style="color: #000088;">$replacement</span><span style="color: #339933;">,</span> <span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #000088;">$content</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p><a href="http://www.vout.nl/wp-content/uploads/2012/04/image_upload.jpg" class="fancybox" rel="gallery" ><img class="alignright size-thumbnail wp-image-264" title="image_upload" src="http://www.vout.nl/wp-content/uploads/2012/04/image_upload-121x150.jpg" alt="Select and link image" width="121" height="150" /></a>Upload de <strong>functions.php</strong> en test nu of de functie werkt door een nieuwe pagina aan te maken in de backend, een afbeelding in te voegen + link naar de volledige afbeelding, zie afbeelding hiernaast.</p>
<p>Sla de pagina vervolgens op en bekijk deze aan de frontend van de website. Wanneer alles goed is gegaan opent een image link nu niet zoals normaal in hetzelfde venster maar in een lightbox window&#8230; zoals het plaatje hiernaast.</p>
<p>Wat hebben we nu exact gedaan? Eigenlijk is het heel simppel, binnen de pagina gaan we op zoek naar een bepaald patroon (in dit geval een image link), voegen daar een class aan toe (fancybox) en krijgen als resultaat een image wat klikbaar is, opent in een lightbox en dat allemaal zonder dat we er bij na hoeven denken.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vout.nl/blog/imagelinks-lightbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google shopping, een toegevoegde waarde?</title>
		<link>http://www.vout.nl/blog/google-shopping-een-toegevoegde-waarde/</link>
		<comments>http://www.vout.nl/blog/google-shopping-een-toegevoegde-waarde/#comments</comments>
		<pubDate>Tue, 17 Apr 2012 20:22:24 +0000</pubDate>
		<dc:creator>Reind</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[shopping]]></category>
		<category><![CDATA[vindbaarheid]]></category>

		<guid isPermaLink="false">http://www.vout.nl/?p=238</guid>
		<description><![CDATA[<img width="200" height="100" src="http://www.vout.nl/wp-content/uploads/2012/04/google_shopping_featured-200x100.jpg" class="attachment-featured-image wp-post-image" alt="google_shopping_featured" title="google_shopping_featured" />Google Shopping draait inmiddels al weer een poosje in Nederland en kort na de Nederlandse introductie heb ik het voor een aantal van onze Magento klanten (welke de data op orde hadden) een feed aangemaakt welke wekelijks &#8216;gesubmit&#8216; wordt bij &#8230; <a href="http://www.vout.nl/blog/google-shopping-een-toegevoegde-waarde/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<img width="200" height="100" src="http://www.vout.nl/wp-content/uploads/2012/04/google_shopping_featured-200x100.jpg" class="attachment-featured-image wp-post-image" alt="google_shopping_featured" title="google_shopping_featured" /><p>Google Shopping draait inmiddels al weer een poosje in Nederland en kort na de Nederlandse introductie heb ik het voor een aantal van onze Magento klanten (welke de data op orde hadden) een feed aangemaakt welke wekelijks &#8216;<em>gesubmit</em>&#8216; wordt bij Google Shopping&#8230; tijd om eens te zien of het ook daadwerkelijk iets brengt.<span id="more-238"></span></p>
<p><strong>Wat is Google Shopping?</strong><br />
Eigenlijk niet veel meer dan een simpele vorm van websites zoals we die al een eeuwigheid kennen in de vorm van een beslist of kieskeurig.nl. Google shopping is echter wat simpeler van opzet en richt zich vooral op &#8216;waar koop ik het product voor de laagste prijs&#8217;. Daarbij verzamelt Google Shopping data bij externe partijen als bijvoorbeeld een Beslist of Trustpilot om de product data aan te vullen met shop reviews.</p>
<p><strong>Waarom zou je in Google Shopping willen staan?</strong><br />
Behalve dat het je (na een initiële setup van de feed) niets kost vergroot het je bereik binnen Google. Bij het maken van een zoekopdracht waar ook &#8216;Shopping&#8217; resultaten voor te vinden zijn worden deze weer gegeven tussen de organische resultaten. Iemand die zoals op onderstaande afbeelding te zien is zoekt op &#8216;<strong>nike air max ltd</strong>&#8216; krijgt als eerste de Google Shopping resultaten te zien.</p>
<p><img class="alignnone size-large wp-image-242" title="google_shopping" src="http://www.vout.nl/wp-content/uploads/2012/04/google_shopping-700x403.jpg" alt="" width="700" height="403" /></p>
<p>Resultaten van Google Shopping staan in dit geval dus nog boven de organische resultaten en direct onder de betaalde advertenties van Google. Doordat men er een plaatje aan toe heeft gevoegd trekt het Google Shopping resultaat flink de aandacht en is de kans vrij groot aanwezig dat iemand als eerste op 1 van deze resultaten zal klikken.</p>
<p>Wanneer we naar &#8216;Shopping&#8217; zelf gaan en daar dezelfde zoekopdracht uitvoeren + sorteren op prijs (van laag naar hoog, we blijven tenslotte Hollanders) krijgen we onderstaande afbeelding als resultaat (klikbaar voor een groter formaat).</p>
<p><a href="http://www.vout.nl/wp-content/uploads/2012/04/google_shopping_result.jpg" class="fancybox" rel="gallery" ><img class="alignnone size-large wp-image-245" title="google_shopping_result" src="http://www.vout.nl/wp-content/uploads/2012/04/google_shopping_result-700x759.jpg" alt="Google Shopping results" width="700" height="759" /></a></p>
<p>Rood omcirkelde items zijn van de shop waar ik de feed voor heb gemaakt en zoals te zien op het screenshot&#8230; van de eerste 12 items zijn 11 directe productlinks naar de website van Athleticshop of Sneakertom. Wanneer we de standaard sortering &#8216;relevantie&#8217; overigens toe passen scoort men nog steeds goed. Van de 20 items op een pagina gaan er 6 naar Athleticshop of Sneakertom, not bad en een resultaat wat je nooit van zijn levensdagen gaat behalen binnen de organische resultaten.</p>
<p><strong>Maar wordt er ook op geklikt?</strong><br />
Natuurlijk heeft een Google Shopping pas een toegevoegde waarde wanneer mensen er ook echt gebruik van maken, oftewel klikken mensen er ook op? Het antwoord is JA. Onderstaande afbeelding is nog niet een heel representatieve grafiek aangezien we nog met wat &#8216;hickups&#8217; zaten in het begin en er aardig wat producten afgekeurd werden. De laatste 2 weken is er flink geoptimaliseerd in de feed en zijn de fouten er uit gesloopt met als gevolg een feed kwaliteit &#8216;goed&#8217; volgens Google.</p>
<p><a href="http://www.vout.nl/wp-content/uploads/2012/04/google_shopping_clicks.jpg" class="fancybox" rel="gallery" ><img class="alignnone size-large wp-image-247" title="google_shopping_clicks" src="http://www.vout.nl/wp-content/uploads/2012/04/google_shopping_clicks-700x170.jpg" alt="Google Shopping clicks" width="700" height="170" /></a></p>
<p>Resultaat zijn per dag zo&#8217;n 50 á 60 clicks van mensen die  op zoek waren naar een product via Google en uiteindelijk via Google Shopping zijn beland op de website van Athleticshop of Sneakertom.</p>
<p>Lang niet slecht als je het mij vraagt, helemaal omdat je er relatief weinig werk aan hebt&#8230; mits je netjes je data submit bij Google.</p>
<p><strong>Deel 2</strong>, &#8220;<em>De Google Shopping basics</em>&#8221; volgt later.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vout.nl/blog/google-shopping-een-toegevoegde-waarde/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Linkbuilding, hoe het dan niet moet</title>
		<link>http://www.vout.nl/blog/linkbuilding-hoe-het-dan-niet-moet/</link>
		<comments>http://www.vout.nl/blog/linkbuilding-hoe-het-dan-niet-moet/#comments</comments>
		<pubDate>Tue, 17 Apr 2012 19:49:51 +0000</pubDate>
		<dc:creator>Reind</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[blackhat]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[linkbuilding]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[wegener]]></category>

		<guid isPermaLink="false">http://www.vout.nl/?p=235</guid>
		<description><![CDATA[<img width="200" height="100" src="http://www.vout.nl/wp-content/uploads/2012/04/wegener_media-200x100.jpg" class="attachment-featured-image wp-post-image" alt="wegener_media" title="wegener_media" />Kwam toevallig via via dit tegen op de website van Wegener, een package deal waarbij je een aantal keywords op kan geven welke dan vervolgens gelinkt worden aan jouw website. Nu klopt het dat inkomende links nog altijd waardevol zijn &#8230; <a href="http://www.vout.nl/blog/linkbuilding-hoe-het-dan-niet-moet/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<img width="200" height="100" src="http://www.vout.nl/wp-content/uploads/2012/04/wegener_media-200x100.jpg" class="attachment-featured-image wp-post-image" alt="wegener_media" title="wegener_media" /><p>Kwam toevallig via via dit tegen op de <a title="Wegener SEO package" href="http://www.destentoradverteren.nl/tipsregionaaladverteren/seo" target="_blank">website van Wegener</a>, een package deal waarbij je een aantal keywords op kan geven welke dan vervolgens gelinkt worden aan jouw website. Nu klopt het dat inkomende links nog altijd waardevol zijn als het gaat om SEO echter is er in dit geval een hele grote maar&#8230;<span id="more-235"></span></p>
<p>En die hele grote &#8216;<em>maar</em>&#8216; is dat Google het niet heel erg &#8216;tof&#8217; vind wanneer er betaald wordt voor dergelijke links. Google (en alle andere zoekmachines voor zover mij bekend) wil namelijk zijn organische resultaten baseren op relevante data en wil voorkomen dat deze data vervuild wordt middels pakketten zoals Wegener ze verkoopt. Vandaar dat Google ook <a title="Google paid links submission" href="https://www.google.com/webmasters/tools/paidlinks" target="_blank">handige formulieren als deze heeft</a> waarmee men zaken als deze onder de aandacht kan brengen van de zoekmachine gigant.</p>
<p>Links &#8216;kopen&#8217; is dus een no-go en zal misschien op korte termijn een resultaat geven, op lange termijn werkt het in het gros van de gevallen averechts en is het ook nog eens verdomd lastig om de gevolgen ervan weer weg te poetsen.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vout.nl/blog/linkbuilding-hoe-het-dan-niet-moet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

