Skip to content

Instantly share code, notes, and snippets.

@wokamoto
wokamoto / pre-commit.keyword-check.sample
Last active August 29, 2015 14:15 — forked from yuroyoro/pre-commit.keyword-check.sample
.php に'鼻くそ' という文字列が含まれていたら、commit を失敗させる
#!/bin/sh
if git rev-parse --verify HEAD >/dev/null 2>&1
then
against=HEAD
else
# Initial commit: diff against an empty tree object
against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
fi
@wokamoto
wokamoto / hardcode_theme_switcher.php
Last active December 11, 2015 23:49 — forked from hissy/hardcode_theme_switcher.php
[WordPress] "/about/", "/news/", "/blog/" というURLにアクセスした時にテーマを切り替える
<?php
/*
Plugin Name: Hardcode theme switcher
Plugin URI: http://ja.forums.wordpress.org/topic/13483
Author: Takuro Hishikawa
Version: 0.1
*/
function my_theme_switcher($theme){
// yes, it's hardcoded!
<?php
add_filter('views_edit-post', 'add_export_link');
function add_export_link( $views ){
$views[] = sprintf(
'<a href="%s">%s</a>',
esc_attr(site_url('/wp-admin/export.php?download=true&content=posts')),
__('Export')
);
return $views;
}