Eklenti yükle kısmına geldiğim zaman aşağıdaki hata satırını alıyorum. Belirtilen yerdeki kod ise aşağıdaki gibidir. Bu sorun ile ilgili desteğinizi rica ederim.
wp-includes/class-wp-list-util.php on line 150
public function pluck( $field, $index_key = null ) {
if ( ! $index_key ) {
/*
* This is simple. Could at some point wrap array_column()
* if we knew we had an array of arrays.
*/
foreach ( $this->output as $key => $value ) {
if ( is_object( $value ) ) {
$this->output[ $key ] = $value->$field;
} else {
$this->output[ $key ] = $value[ $field ];
}
}
return $this->output;
}