X

Colunas de administração da biblioteca de mídia com ID de anexo

Snippets by IsItWP

A biblioteca de mídia tem informações específicas sobre suas imagens. Você pode adicionar outra coluna para exibir o ID do anexo com outros detalhes.

Instruções: Adicione o seguinte código ao arquivo functions.php de seu tema do WordPress.

add_filter('manage_media_columns', 'posts_columns_attachment_id', 1);
add_action('manage_media_custom_column', 'posts_custom_columns_attachment_id', 1, 2);
function posts_columns_attachment_id($defaults){
    $defaults['wps_post_attachments_id'] = __('ID');
    return $defaults;
}
function posts_custom_columns_attachment_id($column_name, $id){
	if($column_name === 'wps_post_attachments_id'){
	echo $id;
    }
}

Você também pode gostar de remover colunas de mídia.

Comentários   Deixe uma resposta

  1. Hi
    This worked thank you.
    I really need to see the ids and be able to sort/filter by image Ids when selecting an image or multiple images for a gallery slideshow.

    at present can only filter by date.

    any chance of a snippet to fix this please?

    Ps my problem is not knowing the question to ask google to find things – too hours to find this – so now have you book marked.

    1. This may or may not have everything you need, but you may want to check out this Stack Exchange entry: https://wordpress.stackexchange.com/questions/35680/sortable-custom-column-in-media-library

  2. Brecht Schoeters dezembro 19, 2020 em 3:46 pm

    Nice, thanks a lot!

  3. Eva Collados Pascual maio 6, 2015 em 5:33 am

    Thanks Kevin! Worked perfectly for me. I tried other functions for this i’ve found on the web without you results.

    Addicted to your snippets!

  4. Thank you so much, you saved me hours and hours 😉

  5. Any way to make the column sortable in 3.5?

  6. Brandon Wilds maio 1, 2012 em 11:45 am

    I am currently trying to get the attachment id to show in a custom field within my media library and cannot seem to figure out how to get it there.  Its easy to add to the media page itself using the $_REQUEST[‘attachment_id’] although this does not work in the media library.

    Your code above does not seem to work within my theme for whatever reason.

  7. This makes it MUCH easier to get the id. Would it be possible to add this column to the gallery tab on the media insert pop-over panel as well? (so you could easily see the id of an image for include or exclude in the shortcode)

    1. Hi David,
      I’m sure you could not something I have looked into, I do a little research for a future posting.

Adicionar um comentário

Ficamos felizes por você ter optado por deixar um comentário. Lembre-se de que todos os comentários são moderados de acordo com nossa política de privacidade, e todos os links são nofollow. NÃO use palavras-chave no campo do nome. Vamos ter uma conversa pessoal e significativa.

WordPress Launch Checklist

A lista de verificação definitiva para o lançamento do WordPress

Compilamos todos os itens essenciais da lista de verificação para o lançamento de seu próximo site WordPress em um ebook prático.
Sim, envie-me o livro eletrônico gratuito grátis!