Skip to content

Instantly share code, notes, and snippets.

["name"=>"","pattern"=>"","constraints"=>[],"controller"=>"::","method"=>"GET"],
@nicocanfrere
nicocanfrere / index.php
Created March 11, 2012 17:22
wp: html5-complet
<!DOCTYPE HTML>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="fr"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="fr"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="fr"> <![endif]-->
<!-- Consider adding a manifest.appcache: h5bp.com/d/Offline -->
<!--[if gt IE 8]><!--> <html class="no-js" lang="<?php bloginfo('language');?>"> <!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width" />
@nicocanfrere
nicocanfrere / wp-tpl.php
Created March 11, 2012 15:22
wp: template comments
<?php
/*
Template Name:
*/
?>
@nicocanfrere
nicocanfrere / start_plugin.txt
Created March 8, 2012 22:39
wp: plugin-start
<?php
/*
Plugin Name: Blank Plugin
Plugin URI: www.nicolas-canfrere.com
Description: Plugin snippet
Author: Nicolas Canfrere
Author URI: www.nicolas-canfrere.com
Version: 1.0
*/
@nicocanfrere
nicocanfrere / custom-post-type.txt
Created March 7, 2012 22:18
wp: custom post type
if(function_exists("register_post_type")){
$labels = array(
'name' => 'Portfolio',
'singular_name' => 'Réalisation',
'add_new' => 'Ajouter une réalisation',
'add_new_item' => 'Ajouter une nouvelle réalisation',
'edit_item' => 'Editer une réalisation',
'new_item' => 'Nouvelle réalisation',
'all_items' => 'Toutes les réalisations',
@nicocanfrere
nicocanfrere / menu.txt
Created March 7, 2012 21:31
wp: register_nav_menus
- Dans functions.php :
if ( function_exists( 'register_nav_menus' ) ) {
register_nav_menus(
array(
'nav_1' => 'Navigation Principale',
'nav_2' => 'Navigation Secondaire'
//...etc... autant que nécéssaire
)
);
@nicocanfrere
nicocanfrere / style.css
Created March 7, 2012 20:44
wp: style.css comments
/*
Theme Name: Blank theme
Theme URI:
Description:
Author: Nicolas Canfrere
Version: 1.0
License: GNU General Public License
License URI: license.txt
Tags:
*/