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; | |
} |
post では無く、カスタム投稿ポスト “example” に追加したい場合はフィルター名を "views_edit-example"
に変更
コメントを残す