編集パネルのカスタム列の順序を変更する


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;
}

デフォルトでは、右側の最後のものとして表示されます。順序を変更するにはどうすればよいですか?上記の列を最初の列または2番目の列として表示する場合はどうなりますか?

前もって感謝します

回答:


36

あなたは基本的にPHPの質問をしていますが、WordPressのコンテキストにあるので答えます。columns配列再構築し、必要な列の前に列を挿入する必要があります

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

気を付けるべきことの1つは、別のプラグインが作成者の列を削除した場合はどうなりますか?独自のサムネイル列も消えます。isset($new['thumbnail'])戻る前に確認できます$new。設定されていない場合は、たとえば最後に追加します。
-Geert

5

カスタム投稿タイプにさえ自動的に列を追加するWPMLのようなプラグインがある場合、テーブルヘッダーに複雑なコードがあるかもしれません。

コードを列定義にコピーする必要はありません。なぜだれでも、それについて。

既に提供されている、適切にフォーマットされ、ソート可能なデフォルト列を拡張したいだけです。

実際、これはわずか7行のコードであり、他のすべての列をそのまま保持します。

# 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

これはいくつかのSOの回答の組み合わせです。うまくいけば誰かの助けになります!

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
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.