This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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; | |
} |