カテゴリ名を次の配列に取得しようとしています
$args = array(
'orderby' => 'name',
'order' => 'ASC'
);
$categories = get_categories($args);
$this->settings['categoriesmain1'] = array(
'section' => 'general',
'title' => __( 'Example Select' ),
'desc' => __( 'This is a description for the drop-down.' ),
'type' => 'select',
'std' => '',
'choices' => array(
$categories => $categories // here i am trying to echo them
)
);
choices
デフォルトでは、彼らはこのようにsmthです
'choices' => array(
'Choice 1' => 'Other Choice 1',
'Choice 2' => 'Other Choice 2',
'Choice 3' => 'Other Choice 3'
)
しかし、それらをエコーしようとする$categories => $categories
と、エラーが発生しますIllegal offset type