post_comment_meta_box_thead()
Displays comments for post table header
Хуков нет.
Возвращает
Массив.
Использование
post_comment_meta_box_thead( $result );
- $result(массив) (обязательный)
- Table header rows.
Список изменений
| С версии 3.0.0 | Введена. |
Код post_comment_meta_box_thead() post comment meta box thead WP 7.0.4
function post_comment_meta_box_thead( $result ) {
unset( $result['cb'], $result['response'] );
return $result;
}