
LeitaProd est une jeune boîte de production de films publicitaires et de reportages parisienne.

LeitaProd est une jeune boîte de production de films publicitaires et de reportages parisienne.
I wanted an easy solution for people to add videos from Vimeo to their WordPress articles (without having to add them to the editor for several reasons) and I came up with the following:
The function
Add this to functions.php in your theme. It is based on the vimeo shortcode plugin for WordPress.
function insert_vimeo($clip_id) {
$width = '640';
$height = '360';
if (empty($clip_id) || !is_numeric($clip_id)) return '<!-- Vimeo: Invalid clip_id -->';
if ($height && !$width) $width = intval($height * 16 / 9);
if (!$height && $width) $height = intval($width * 9 / 16);
return "<iframe src='http://player.vimeo.com/video/$clip_id?title=0&byline=0&portrait=0'
width='$width' height='$height' frameborder='0'></iframe>";
}
The piece of code for your template :
Put this in single.php or page.php, within the loop.
<?php
if ( get_post_meta($post->ID, 'vimeo', true) ) :
$vimeo = get_post_meta($post->ID, 'vimeo', true);
echo (insert_vimeo($vimeo));
endif;
?>
Now you just have to add an extra field called « vimeo » to your posts or pages and add as a value the ID of the clip, that means the numbers in the URL. If, for example, you want to add the video at http://vimeo.com/20732587 you would add 20732587 to the value of your field.

Réalisation du site web de l’association JiNOV international.
Migration d’un site statique vers WordPress. Il s’agit du site de la jeune galerie parisienne Gaudel de Stampa. Le graphisme et le logo ont été conçus par Aline Girard.
Migration of a static website to WordPress. The website is the one of the young parisian gallery Gaudel de Stampa. Design and logo are a creation by Aline Girard.
Migration einer statischen Webseite zu WordPress für die junge Pariser Galerie Gaudel de Stampa. Design und Logo wurden konzipiert von Aline Girard.
Avoir une page de garde accessible pour le monde entier pendant qu’on travaille encore sur un site WordPress installé au même endroit c’est possible :
<FilesMatch "\.(php)$">
AuthName "Demande de mot de passe"
AuthUserFile /the/path/to/.htpasswd
AuthType basic
Require valid-user
</FilesMatch>
<FilesMatch "(index.html)$">
Order allow,deny
allow from all
</FilesMatch>
Cela permet d’accéder au fichier index.html à tout le monde (allow from all), tandis que pour accéder à un fichier .php (et donc à WordPress) il faut entrer un nom et un mot de passe (spécifié dans le fichier .htpasswd).
Le chemin vers le fichier .htpasswd doit être absolu. Pour le trouver , on peut utiliser phpinfo().
Seul souci : on ne peut plus correctement voir la page d’accueil du site. Pour cela, il faut entrer à la main dans la barre d’adresse du navigateur : http://example.com/index.php?preview=true
Voici, pour mémoire, une liste non exhaustive d’extensions utiles pour WordPress.
This plugin does not do much.
It basically just hides most of the detailed options from the editing pages in the wp-admin interface, like post revisions, custom fields and comments. It leaves intact : Title, editor, publication options, tags, categories, page attributes.
It does not (yet) take into account the user’s role. This is done for all users except administrators.
Install: Download, unzip, upload to wp-content/plugins/, go to wp-admin => plugins and activate.
Uninstall: Deactivate the plugin and delete the files.
Download wp_simple_wpadmin 0.2
If you would rather prefer not to install a plugin, you could add a function and two lines of CSS to your site’s theme as I have first suggested here: Less options for WordPress’ post editor.
Lison Riess est comédienne voix off, vous avez certainement entendu sa voix dans une publicité ou une bande annonce. Ce site utilise des polices de caractère non standard, du jQuery, des éléments CSS3/HTML5 et propose un graphisme particulièrement original, fait par Aline Girard. J’ai réalisé et développé ce site.
Lison Riess is a voice over artist. Her voice is often to be heard in french advertisements and jingles. This website uses cstom fonts, jQuery, CSS3/HTML5 elements and features a very particular design by Aline Girard. I have carried out the development of the website.
I have been asked several times by clients or collaborators to simplify the admin interface of WordPress. Which is a problem, as I do not want my modifications to magically disappear at each WordPress update. So, one solution could be to simply hide the unused elements via CSS. Here is how it works:
First, add a stylesheet, simple-wp-admin.css to ypur theme which basically puts a « display: none » on the elements in the the post and page editor you want to hide. These elements are post revisions, comments etc. It contains something like this :
#post-body normal-sortables, #post-body #advanced-sortables {
display: none;
}
Then add the following code to functions.php (in the theme folder), which calls the custom stylesheet from the admin interface.
<?php function simplify_admin_interface() {
$url = get_bloginfo('stylesheet_directory') . '/simple-wp-admin.css';
echo '<link rel="stylesheet" type="text/css" href="' . $url . '" />';
}
add_action('admin_head', 'simplify_admin_interface');
?>
That’s all.
(One could probably add an option to distinguish the user’s role and capabilities, so the advanced options will be hidden only for non administrators. I implemented this in the plugin I finally wrote, wp_simple_admin.)
Chez 1and1.fr WordPress fonctionne à merveille – il suffit de dire qu’on veut utiliser PHP5, et non PHP4, qui est la version de PHP utilisée par défaut sur leurs serveurs. Sans cela, la mise à jour automatique, l’installation via l’interface d’administration d’extensions et de thèmes et l’upload de fichiers ne fonctionnent pas correctement.
Il suffit, à la racine de l’installation WordPress, d’ajouter un fichier .htaccess (ou d’ajouter au fichier .htaccess présent) les lignes suivantes :
AddType x-mapp-php5 .php
AddHandler x-mapp-php5 .php
Cela fait maintenant 6 ans que la première version du site web de l’artiste Tsuneko Taniuchi a vu le jour, et il était temps de le refaire avec des images plus grandes, avec plus d’informations et sans Flash. Le voilà !
Mon envie était de créer un design sobre et simple. J’ai utilisé quelques éléments CSS3 pour ce site et il est préférable de le regarder avec un navigateur récent.
Pour le couple d’architectes Vizet, j’ai créé un thème WordPress sur mesure, d’après le concept et le design de Mathias Delfau. Le thème implémente diverses galeries d’images. Un espace restreint permet aux clients et aux collaborateurs de télécharger des documents les concernant.
Für das Architektenpaar Vizet habe ich ein maßgeschneidertes WordPressthema erstellt, nach einem Design und Konzept von Mathias Delfau. Das Thema enthält diverse Bildergalerien. Kunden und freie Mitarbeiter können Dokumente in einer zugangsbeschränkten Zone herunterladen.
I have created a very special WordPress theme for the website of the architect couple Vizet, follwing the concept and graphics invented by Mathias Delfau. The theme contains various image galleries. Clients and associates may download documents via a restricted area.
For a client I was looking for a slideshow which could be easily integrated with WordPress and galleria-wp has been my choice.
It just does not start the slideshow automatically…
In order to do this I added the following lines of code to the showNavigation if-loop :
if ( $showNavigation == 1 ) {
// code..
} else {
// autoplay
jQuery(window).load( function() {
timerID_$galleryID = setInterval( \"jQuery.galleria.next( 'stage_$galleryID', '$galleryID' );\", $intervalMilliSec );
});
}
Now, if one unselects « show navigation » in wp-galleria’s admin panel in WordPress, the slideshow will autoplay.
XiLabs propose des jeux d’un nouveau genre, jeux dits pervasifs. Un téléphone portable devient l’interface entre les joueurs et le terrain : la ville. J’ai créée pour XiLabs un site multilingue (français, anglais, chinois) dont le design rappelle une interface de téléphone portable ludique.
XiLabs entwickelt Spiele neuer Art, sogenannte pervasive Spiele. Das Mobiltelefon wird hierbei zum Interface zwischen Spielern und Terrain, der Stadt. Ich habe für XiLabs eine mehrsprachige Seite gestaltet (französisch, englisch und chinesisch), deren Design an eine verspielte Benutzeroberfläche eines Mobiltelefons erinnern soll.
XiLabs develops a new kind of games, so called pervasive games. A mobile phone is the interface in between players and the playground: the city itself. I have made a multilingual website (french, english, chinese) for XiLabs, with a design recalling a playful mobile phone user interface.
Le magasin AC Matière vend des peintures et des éléments décoratifs originaux.
Dans le cadre d’une restructuration du site web, conçu en 2005, toujours en collaboration avec design ex machina, nous sommes aussi revenus sur le développement original du site web. Le site a maintenant des URLs propres et peut être mis à jour plus facilement. Le graphisme original de design ex machina a été légèrement modifié.
AC Matière sells paints and original decorative elements.
In a collective effort with design ex machina, we have restructured the website we created originally in 2005, and abandoned our old PHP developments. The website has now search engine friendly URLs and can be updated more easily. The original design by design ex machina ahs been slightly modified.
«Les Ames d’Atala sont une maisonnette d’édition consacrée à la littérature décadente. Elles ont pour but de révéler la monstrueuse beauté de textes déviants, joyaux de la fange pornographique, médicale ou prolétaire qui éclaboussent les fins de siècles.» Pour «Les Ames d’Atala» j’ai créée un blog WordPress très simple.
« ‘Les âmes d’Atala’ (Die Seelen Atalas) sind ein kleiner Verlag der sich dekadenter Literatur widmet. Ihr Ziel ist es, die monstruöse Schönheit ungewöhnlicher Texte, Juwelen pornographischen, medizinischen oder proletarischen Schlamms, die die fins de siècles beschmutzen, zu offenbaren. » Für « Les âmes d’Atala » habe ich einen einfachen WordPressblog gestaltet.
Pour Kokopelli (gestion de projet, graphisme) j’ai mis en place et intégré les feuilles de style du blog présentation le journal de bord de la «Fleur de Lampaul»un bateau de la Fondation Nicolas Hulot. Le style du blog devait correspondre exactement à la charte graphique du site déjà existant.
For Kokopelli (project leader, graphics) I installed and styled a weblog presenting the logs of the « Fleur de Lampaul », a boat of the Nicolas Hulot Foundation, an environmental NGO. The blog’s style had to fit straight into to the design of the website that existed already.
Tsuneko Taniuchi est une artiste franco-japonaise qui a dévéloppé une forme de la performance qu’elle appelle «micro-événement». Ce site présente ces travaux au fil des années et comporte aussi un agenda des événements à venir. J’ai choisi un graphisme très sobre et minimaliste. Textes et photos ne sont pas contenus dans le fichier Flash afin de garder une navigation la plus rapide possible.
Tsuneko Taniuchi ist eine franko-japanische Künstlerin, die ihre eigene Performanceform, die sie « Mikro-ereignis » nennt, erdacht hat. Diese Webseite präsentiert ihre Arbeiten und beinhaltet auch einen Kalender für kommende Performances. Ich habe das Design sehr simpel und minimalistisch gehalten. Fotos und Texte sind nicht in der Flashdatei enthalten, um die Navigation so schnell wie möglich zu gestalten.
Tsuneko Taniuchi is a franco-japanese artiste who has invented a form of performance she calls « micro-event ». The website presents her work, year after year and contains also an calendar for upcoming events. I chose to keep the design really simple and minimalist. Texts and photos are not contained in the Flash file to keep navigation the fastest possible.