WC_Admin_List_Table_Orders::prepare_row_data
Pre-fetch any data for the row each column has access to it. the_order global is there for bw compat.
Метод класса: WC_Admin_List_Table_Orders{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->prepare_row_data( $post_id );
- $post_id(int) (обязательный)
- Post ID being shown.
Код WC_Admin_List_Table_Orders::prepare_row_data() WC Admin List Table Orders::prepare row data WC 10.3.6
protected function prepare_row_data( $post_id ) {
global $the_order;
if ( empty( $this->object ) || $this->object->get_id() !== $post_id ) {
$this->object = wc_get_order( $post_id );
$the_order = $this->object;
}
}