Skip to content

Instantly share code, notes, and snippets.

Created December 17, 2012 07:39
Show Gist options
  • Save anonymous/4316469 to your computer and use it in GitHub Desktop.
Save anonymous/4316469 to your computer and use it in GitHub Desktop.
[WordPress] 投稿一覧にエクスポートリンクを追加する
<?php
add_filter('views_edit-user-info',array(&$this,'add_export_link'));
function add_export_link( $views ){
$views[] = sprintf(
'<a href="%s">エクスポート</a>',
esc_attr(site_url('/wp-admin/export.php?download=true&content=posts'))
);
return $views;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment