post_comment_meta_box_thead

函数
post_comment_meta_box_thead ( $result )
参数
  • (array) $result Table header rows.
    Required:
返回值
  • (array)
定义位置
相关方法
post_comment_meta_boxpost_comment_status_meta_boxpost_custom_meta_boxpost_format_meta_boxpost_submit_meta_box
引入
3.0.0
弃用
-

post_comment_meta_box_thead: 这个函数用来在文章编辑界面上输出评论元框的标题。

显示文章表头的评论。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function post_comment_meta_box_thead( $result ) {
unset( $result['cb'], $result['response'] );
return $result;
}
function post_comment_meta_box_thead( $result ) { unset( $result['cb'], $result['response'] ); return $result; }
function post_comment_meta_box_thead( $result ) {
	unset( $result['cb'], $result['response'] );
	return $result;
}

常见问题

FAQs
查看更多 >