<?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>Kune.fr &#187; Theme</title>
	<atom:link href="http://kune.fr/blog/category/wordpress/theme/feed/" rel="self" type="application/rss+xml" />
	<link>http://kune.fr</link>
	<description>Bougeons le web</description>
	<lastBuildDate>Fri, 18 Sep 2009 17:11:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Une galerie WordPress sans saut de ligne</title>
		<link>http://kune.fr/blog/wordpress/une-galerie-wordpress-sans-saut-de-ligne/</link>
		<comments>http://kune.fr/blog/wordpress/une-galerie-wordpress-sans-saut-de-ligne/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 12:53:46 +0000</pubDate>
		<dc:creator>Mat_</dc:creator>
				<category><![CDATA[Theme]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[galerie]]></category>
		<category><![CDATA[Gallery]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://kune.fr/?p=162</guid>
		<description><![CDATA[Je travaille en ce moment sur le site internet d&#8217;un Designer (j&#8217;ajouterais le site une fois terminé sur le site de ma société: http://www.kune-studio.com). J&#8217;ai voulu utiliser la galerie que propose WordPress, pour créer un caroussel de photos. Le problème était simple, WP ajoute systématiquement unn saut de ligne entre les items de la galerie, [...]]]></description>
			<content:encoded><![CDATA[<p>Je travaille en ce moment sur le site internet d&#8217;un Designer (j&#8217;ajouterais le site une fois terminé sur le site de ma société: http://www.kune-studio.com).</p>
<p>J&#8217;ai voulu utiliser la galerie que propose <a class="zem_slink" title="WordPress" rel="homepage" href="http://wordpress.org">WordPress</a>, pour créer un caroussel de photos. Le problème était simple, WP ajoute systématiquement unn saut de ligne entre les items de la galerie, et un dernier saut de ligne à la fin de la gallerie.</p>
<p>Voilà donc un moyen simple pour les supprimer. Ouvrez (ou créez) un fichier functions.php dans le dossier de votre thème et collez y ceci:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> my_gallery_shortcode<span style="color: #009900;">&#40;</span><span style="color: #000088;">$attr</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>
&nbsp;
	static <span style="color: #000088;">$instance</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$instance</span><span style="color: #339933;">++;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">// Allow plugins/themes to override the default gallery template.</span>
	<span style="color: #000088;">$output</span> <span style="color: #339933;">=</span> apply_filters<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'post_gallery'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #000088;">$attr</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$output</span> <span style="color: #339933;">!=</span> <span style="color: #0000ff;">''</span> <span style="color: #009900;">&#41;</span>
		<span style="color: #b1b100;">return</span> <span style="color: #000088;">$output</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">// We're trusting author input, so let's at least make sure it looks like a valid orderby statement</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$attr</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'orderby'</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$attr</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'orderby'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> sanitize_sql_orderby<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$attr</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'orderby'</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #339933;">!</span><span style="color: #000088;">$attr</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'orderby'</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#41;</span>
			<span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$attr</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'orderby'</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #990000;">extract</span><span style="color: #009900;">&#40;</span>shortcode_atts<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
		<span style="color: #0000ff;">'order'</span>      <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #0000ff;">'ASC'</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'orderby'</span>    <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #0000ff;">'menu_order ID'</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'id'</span>         <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>ID<span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'itemtag'</span>    <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #0000ff;">'div'</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'icontag'</span>    <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #0000ff;">'span'</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'captiontag'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #0000ff;">'p'</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'columns'</span>    <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #cc66cc;">3</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'size'</span>       <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #0000ff;">'full'</span>
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$attr</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #000088;">$id</span> <span style="color: #339933;">=</span> <span style="color: #990000;">intval</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$id</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$attachments</span> <span style="color: #339933;">=</span> get_children<span style="color: #009900;">&#40;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'post_parent'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #000088;">$id</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'post_status'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #0000ff;">'inherit'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'post_type'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #0000ff;">'attachment'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'post_mime_type'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #0000ff;">'image'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'order'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #000088;">$order</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'orderby'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #000088;">$orderby</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$attachments</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span>
		<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> is_feed<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: #000088;">$output</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$attachments</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$att_id</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #000088;">$attachment</span> <span style="color: #009900;">&#41;</span>
			<span style="color: #000088;">$output</span> <span style="color: #339933;">.=</span> wp_get_attachment_link<span style="color: #009900;">&#40;</span><span style="color: #000088;">$att_id</span><span style="color: #339933;">,</span> <span style="color: #000088;">$size</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">return</span> <span style="color: #000088;">$output</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #000088;">$itemtag</span> <span style="color: #339933;">=</span> tag_escape<span style="color: #009900;">&#40;</span><span style="color: #000088;">$itemtag</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$captiontag</span> <span style="color: #339933;">=</span> tag_escape<span style="color: #009900;">&#40;</span><span style="color: #000088;">$captiontag</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$columns</span> <span style="color: #339933;">=</span> <span style="color: #990000;">intval</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$columns</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$itemwidth</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$columns</span> <span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #cc66cc;">0</span> ? <span style="color: #990000;">floor</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">100</span><span style="color: #339933;">/</span><span style="color: #000088;">$columns</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #cc66cc;">100</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #000088;">$selector</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;gallery-<span style="color: #006699; font-weight: bold;">{$instance}</span>&quot;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #000088;">$output</span> <span style="color: #339933;">=</span> apply_filters<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'gallery_style'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;
&nbsp;
			#<span style="color: #006699; font-weight: bold;">{$selector}</span> {
				margin: auto;
			}
			#<span style="color: #006699; font-weight: bold;">{$selector}</span> .gallery-item {
				float: left;
				margin-top: 10px;
				text-align: center;
				width: <span style="color: #006699; font-weight: bold;">{$itemwidth}</span>%;			}
			#<span style="color: #006699; font-weight: bold;">{$selector}</span> img {
				border: 2px solid #cfcfcf;
			}
			#<span style="color: #006699; font-weight: bold;">{$selector}</span> .gallery-caption {
				margin-left: 0;
			}
&nbsp;
		&lt;!-- see gallery_shortcode() in wp-includes/media.php --&gt;
		&lt;div id=&quot;</span><span style="color: #000088;">$selector</span><span style="color: #0000ff;">&quot; class=&quot;</span>gallery galleryid<span style="color: #339933;">-</span><span style="color: #009900;">&#123;</span><span style="color: #000088;">$id</span><span style="color: #009900;">&#125;</span><span style="color: #0000ff;">&quot;&gt;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #000088;">$i</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$attachments</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$id</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #000088;">$attachment</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$link</span> <span style="color: #339933;">=</span> <span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$attr</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'link'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;</span>amp<span style="color: #339933;">;&amp;</span>amp<span style="color: #339933;">;</span> <span style="color: #0000ff;">'file'</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$attr</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'link'</span><span style="color: #009900;">&#93;</span> ? wp_get_attachment_link<span style="color: #009900;">&#40;</span><span style="color: #000088;">$id</span><span style="color: #339933;">,</span> <span style="color: #000088;">$size</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> wp_get_attachment_link<span style="color: #009900;">&#40;</span><span style="color: #000088;">$id</span><span style="color: #339933;">,</span> <span style="color: #000088;">$size</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #000088;">$output</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&amp;lt;<span style="color: #006699; font-weight: bold;">{$itemtag}</span> class='gallery-item'&amp;gt;&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$output</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;
			&amp;lt;<span style="color: #006699; font-weight: bold;">{$icontag}</span> class='gallery-icon'&amp;gt;
				<span style="color: #006699; font-weight: bold;">$link</span>
			&lt;!--<span style="color: #006699; font-weight: bold;">{$icontag}</span>--&gt;&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$captiontag</span> <span style="color: #339933;">&amp;</span>amp<span style="color: #339933;">;&amp;</span>amp<span style="color: #339933;">;</span> <span style="color: #990000;">trim</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$attachment</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>post_excerpt<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			<span style="color: #000088;">$output</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;
				&amp;lt;<span style="color: #006699; font-weight: bold;">{$captiontag}</span> class='gallery-caption'&amp;gt;
				&quot;</span> <span style="color: #339933;">.</span> wptexturize<span style="color: #009900;">&#40;</span><span style="color: #000088;">$attachment</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>post_excerpt<span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;
				&lt;!--<span style="color: #006699; font-weight: bold;">{$captiontag}</span>--&gt;&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
		<span style="color: #000088;">$output</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;&lt;!--<span style="color: #006699; font-weight: bold;">{$itemtag}</span>--&gt;&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$columns</span> <span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #cc66cc;">0</span> <span style="color: #339933;">&amp;</span>amp<span style="color: #339933;">;&amp;</span>amp<span style="color: #339933;">;</span> <span style="color: #339933;">++</span><span style="color: #000088;">$i</span> <span style="color: #339933;">%</span> <span style="color: #000088;">$columns</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">0</span> <span style="color: #009900;">&#41;</span>
			<span style="color: #000088;">$output</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">'&lt;br&gt;'</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #000088;">$output</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;
&nbsp;
		&lt;/div&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">return</span> <span style="color: #000088;">$output</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Quelques explications pour rendre plus clair les opérations.Tout d&#8217;abord on supprime le shortcode qui affiche la galery. Ensuite j&#8217;ai recopié la fonction qui génère la galerie en y apportant de petites modifications (les icontag et itentag par défaut). Enfin, j&#8217;ai supprimé le dernier saut de ligne à la fin pour ne plus avoir a l&#8217;afficher.</p>
<p>Pour les sauts de ligne entre les éléments de la galerie, il vous suffit de donner 0 pour le nombre de colonne.</p>
<p>Et voilà, le tour est joué!</p>
<div class="zemanta-pixie" style="margin-top: 10px;height: 15px"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/9947e399-6d75-4953-b70e-76b4b5a70d3e/"><img class="zemanta-pixie-img" style="border: medium none;float: right" src="http://img.zemanta.com/reblog_e.png?x-id=9947e399-6d75-4953-b70e-76b4b5a70d3e" alt="Reblog this post [with Zemanta]"></a><span class="zem-script more-related pretty-attribution"></span></div>
]]></content:encoded>
			<wfw:commentRss>http://kune.fr/blog/wordpress/une-galerie-wordpress-sans-saut-de-ligne/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New WordPress Gallery Theme</title>
		<link>http://kune.fr/blog/wordpress/new-wordpress-gallery-theme/</link>
		<comments>http://kune.fr/blog/wordpress/new-wordpress-gallery-theme/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 18:04:16 +0000</pubDate>
		<dc:creator>Mat_</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Gallery]]></category>

		<guid isPermaLink="false">http://kune.fr/?p=74</guid>
		<description><![CDATA[You&#8217;re looking for a new theme but you can&#8217;t find one that fit you? I have the solution! You can now browse our Theme gallery, and choose one. You can rate your favorites and add a comment about them. Show us what you made with it, your blogs, your modification. If you want your theme [...]]]></description>
			<content:encoded><![CDATA[<p>You&#8217;re looking for a new theme but you can&#8217;t find one that fit you? I have the solution!<br />
You can now browse our <a title="Kune WordPress Theme Gallery" href="http://www.kune.fr/gallery">Theme gallery</a>, and choose one. You can rate your favorites and add a comment about them. Show us what you made with it, your blogs, your modification.</p>
<p>If you want your theme to be part of our gallery, feel free to contact us!</p>
]]></content:encoded>
			<wfw:commentRss>http://kune.fr/blog/wordpress/new-wordpress-gallery-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP-Jobboard &#8211; Transform WordPress into a Jobboard</title>
		<link>http://kune.fr/blog/wordpress/wp-jobboard-transform-wordpress-into-a-jobboard/</link>
		<comments>http://kune.fr/blog/wordpress/wp-jobboard-transform-wordpress-into-a-jobboard/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 14:11:16 +0000</pubDate>
		<dc:creator>Mat_</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[jobboard]]></category>
		<category><![CDATA[resume]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://kune.fr/?p=20</guid>
		<description><![CDATA[Let me introduce you my first WordPress Theme. I&#8217;ve just released WP-Jobboard. Thanks to this theme, you will be able to turn your wordpress install in a simple jobboard. this theme is released under GPL, so you can use the theme for free for every project you have in mind. If you modify it, i [...]]]></description>
			<content:encoded><![CDATA[<p>Let me introduce you my first WordPress Theme.</p>
<p>I&#8217;ve just released WP-Jobboard. Thanks to this theme, you will be able to turn your wordpress install in a simple jobboard.<br />
this theme is released under GPL, so you can use the theme for free for every project you have in mind. If you modify it, i would love to see what you&#8217;ve made of it, but you&#8217;re free to do what you want.</p>
<h2><strong>The features:</strong></h2>
<ul>
<li>Widget-ready</li>
<li>3 columns</li>
<li>4 places for widgets</li>
</ul>
<p>I will of course update and support this theme. So if you want to use it and have the last updates, don&#8217;t forget to suscribe to my RSS feed!<br />
<strong><br />
</strong></p>
<h2><strong> Some screenshots:</strong></h2>
<p><strong>The header:</strong></p>
<p><a href="http://kune.fr/files/2008/12/ex-header.png"><img class="size-full wp-image-22" src="http://kune.fr/files/2008/12/ex-header.png" alt="The header of WP-Jobboard" width="500" height="223" /></a></p>
<p><strong><br />
A job example:</strong></p>
<p><a href="http://kune.fr/files/2008/12/ex-jobs.png"><img class="alignnone size-full wp-image-23" src="http://kune.fr/files/2008/12/ex-jobs.png" alt="" width="499" height="243" /></a></p>
<p><strong>The sidebar:</strong></p>
<p><a href="http://kune.fr/files/2008/12/ex-sidebar.png"><img class="alignnone size-full wp-image-24" src="http://kune.fr/files/2008/12/ex-sidebar.png" alt="" width="500" height="261" /></a></p>
<h2><strong>Where ?</strong></h2>
<p>You want to:</p>
<ul>
<li><a title="Wp-Jobboard" href="http://www.kune.fr/share/wp-jobboard.zip" target="_blank">Download Wp-Jobboard<br />
</a></li>
<li><a title="WP-Jobboard" href="http://wp-jobboard.kune.fr" target="_blank">Preview</a></li>
</ul>
<h2><strong>Install:</strong></h2>
<ol>
<li>Extract the content of the archive (you can download it <a title="Wp-Jobboard" href="http://www.kune.fr/share/wp-jobboard.zip" target="_blank">here</a> in your /wp-content/themes/</li>
<li>Activate the theme</li>
<li>Create a &#8211; <strong>job</strong> &#8211; category</li>
<li>Create a &#8211; <strong>CategJob</strong> -category</li>
<li>Now, add the categories you want under the job category, like Freelance, Full-Time, or Part-Time, you can add as many type of job you want.</li>
<li>Add some categories under the CategJob category, like Webmaster, PHP Guru, Senior Manager &#8230;</li>
<li>When you want to add a job to you jobboard, just choose the categories of your job (like Freelance and Webmaster  ), in the optionnal fields, add two: address and company</li>
</ol>
<p>That&#8217;s all ! Remember that the <strong>job</strong> and the <strong>CategJob</strong> are important.</p>
<p>If you have any question, feel free to ask in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://kune.fr/blog/wordpress/wp-jobboard-transform-wordpress-into-a-jobboard/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>
