Змінення порядку користувацьких стовпців для панелей редагування


27

Коли ви реєструєте спеціальний стовпець так:

//Register thumbnail column for au-gallery type
add_filter('manage_edit-au-gallery_columns', 'thumbnail_column');
function thumbnail_column($columns) {
$columns['thumbnail'] = 'Thumbnail';
return $columns;
}

за замовчуванням він відображається як останній праворуч. Як я можу змінити замовлення? Що робити, якщо я хочу показати вищевказаний стовпчик як перший чи другий?

Заздалегідь спасибі

Відповіді:


36

Ви в основному задаєте питання PHP, але я відповім на нього, оскільки це в контексті WordPress. Потрібно відновити масив стовпців, вставляючи свій стовпець перед стовпцем, для якого потрібно залишити :

add_filter('manage_posts_columns', 'thumbnail_column');
function thumbnail_column($columns) {
  $new = array();
  foreach($columns as $key => $title) {
    if ($key=='author') // Put the Thumbnail column before the Author column
      $new['thumbnail'] = 'Thumbnail';
    $new[$key] = $title;
  }
  return $new;
}

так, я здогадуюсь, що це було б і простішим способом :), але я зрозумів свою ідею правильно у своїй відповіді. приємне мислення.
Bainternet

בניית אתרים - Я майже закінчив писати свою відповідь, коли ти відповів своїм, тож наші відповіді "перекреслилися по пошті" , так би мовити. У будь-якому випадку, мені знадобилося певний час, щоб зрозуміти це; це, звичайно, не траплялося мені в перший раз, коли мені це було потрібно.
MikeSchinkel

На що слід звернути увагу: що станеться, якщо інший плагін видалив стовпець автора? Ваша власна мініатюрна колонка також зникне. Ви можете зробити isset($new['thumbnail'])перевірку перед поверненням $new. Якщо він не встановлений, просто додайте його, наприклад, наприкінці.
Geert

5

Якщо у вас є плагіни типу WPML, які автоматично додають стовпці, навіть до спеціальних типів публікацій, у заголовку таблиці може виникнути складний код.

Ви не хочете копіювати код у визначення стовпця. Чому б хто, з цього приводу.

Ми просто хочемо розширити вже надані, добре відформатовані та відсортовані стовпці за замовчуванням.

Насправді це лише сім рядків коду, і він зберігає всі інші стовпці недоторканими.

# hook into manage_edit-<mycustomposttype>_columns
add_filter( 'manage_edit-mycustomposttype_columns', 'mycustomposttype_columns_definition' ) ;

# column definition. $columns is the original array from the admin interface for this posttype.
function mycustomposttype_columns_definition( $columns ) {

  # add your column key to the existing columns.
  $columns['mycolumn'] = __( 'Something different' ); 

  # now define a new order. you need to look up the column 
  # names in the HTML of the admin interface HTML of the table header. 
  #   "cb" is the "select all" checkbox.
  #   "title" is the title column.
  #   "date" is the date column.
  #   "icl_translations" comes from a plugin (in this case, WPML).
  # change the order of the names to change the order of the columns.
  $customOrder = array('cb', 'title', 'icl_translations', 'mycolumn', 'date');

  # return a new column array to wordpress.
  # order is the exactly like you set in $customOrder.
  foreach ($customOrder as $colname)
    $new[$colname] = $columns[$colname];    
  return $new;
}

сподіваюся, що це допоможе ..


3

Єдиний спосіб, коли я знаю, як створити власний масив стовпців

// Add to admin_init function
add_filter('manage_edit-au-gallery_columns', 'add_my_gallery_columns');

function add_my_gallery_columns($gallery_columns) {
        $new_columns['cb'] = '<input type="checkbox" />';

        $new_columns['id'] = __('ID');
        $new_columns['title'] = _x('Gallery Name', 'column name');
                // your new column somewhere good in the middle
        $new_columns['thumbnail'] = __('Thumbnail');

        $new_columns['categories'] = __('Categories');
        $new_columns['tags'] = __('Tags');
        $new_columns['date'] = _x('Date', 'column name');

        return $new_columns;
    }

а потім надайте ці додаткові додані стовпці, як зазвичай

// Add to admin_init function
    add_action('manage_au-gallery_posts_custom_column', 'manage_gallery_columns', 10, 2);

    function manage_gallery_columns($column_name, $id) {
        global $wpdb;
        switch ($column_name) {
        case 'id':
            echo $id;
                break;

        case 'Thumbnail':
            $thumbnail_id = get_post_meta( $id, '_thumbnail_id', true );
                // image from gallery
                $attachments = get_children( array('post_parent' => $post_id, 'post_type' => 'attachment', 'post_mime_type' => 'image') );
                if ($thumbnail_id)
                    $thumb = wp_get_attachment_image( $thumbnail_id, array($width, $height), true );
                elseif ($attachments) {
                    foreach ( $attachments as $attachment_id => $attachment ) {
                        $thumb = wp_get_attachment_image( $attachment_id, array($width, $height), true );
                    }
                }
                if ( isset($thumb) && $thumb ) {echo $thumb; } else {echo __('None');}
            break;
        default:
            break;
        } // end switch
}

Сподіваюся, що це допомагає


2

Це поєднання декількох відповідей ТА, сподіваємось, це комусь допоможе!

function array_insert( $array, $index, $insert ) {
    return array_slice( $array, 0, $index, true ) + $insert +
    array_slice( $array, $index, count( $array ) - $index, true);
}

add_filter( 'manage_resource_posts_columns' , function ( $columns ) {
    return array_insert( $columns, 2, [
        'image' => 'Featured Image'
    ] );
});

Я виявив, що array_splice()не буде зберігати спеціальні ключі, як нам потрібно. array_insert()робить.


1
Це має бути правильна відповідь.
xudre
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.