Skip to content

Instantly share code, notes, and snippets.

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
/**
* Default Category Title
*
* @author Bill Erickson
* @url http://www.billerickson.net/default-category-and-tag-titles
*
* @param string $headline
@mzdebo
mzdebo / add_post_thumb_column.php
Created July 15, 2021 10:56 — forked from mkwebworker/add_post_thumb_column.php
Add a custom column with post thumbnail to the post overview
/* Add the post thumbnail to admin panel - marcokuemmel.de*/
function my_custom_column_content($column)
{
if ($column == 'featuredimage')
{
global $post;
echo (has_post_thumbnail($post->ID)) ? the_post_thumbnail(array(80,80)) : '<p>kein Bild festgelegt</p>' ;
}
}
// for cpt use manage_{$post_type}_posts_custom_column