Skip to content

Instantly share code, notes, and snippets.

@kurozumi
Last active August 29, 2015 14:21
Show Gist options
  • Save kurozumi/e9692baeebe7e27e854c to your computer and use it in GitHub Desktop.
Save kurozumi/e9692baeebe7e27e854c to your computer and use it in GitHub Desktop.
【ワードプレス】管理画面の投稿一覧の各記事にスパム数を表示する方法
add_filter("post_row_actions", function($actions, $post){
if($post->post_status == "publish"){
$num_comments = wp_count_comments($post->ID);
$actions['spam'] = sprintf('<a href="%s">' . __('Spam') . '(%s)</a>', sprintf(admin_url('edit-comments.php?comment_status=spam&p=%d'), $post->ID), $num_comments->spam);
}
return $actions;
}, 0, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment