WPCF7_Contact_Form_List_Table::column_author()publicCF7 1.0

Метод класса: WPCF7_Contact_Form_List_Table{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WPCF7_Contact_Form_List_Table = new WPCF7_Contact_Form_List_Table();
$WPCF7_Contact_Form_List_Table->column_author( $item );
$item (обязательный)
-

Код WPCF7_Contact_Form_List_Table::column_author() CF7 5.9.3

public function column_author( $item ) {
	$post = get_post( $item->id() );

	if ( ! $post ) {
		return;
	}

	$author = get_userdata( $post->post_author );

	if ( false === $author ) {
		return;
	}

	return esc_html( $author->display_name );
}