XylotrechusZ
<?php
// Show Featured image in the admin section
add_filter( 'manage_post_posts_columns', 'themestek_post_set_featured_image_column' );
add_action( 'manage_post_posts_custom_column' , 'themestek_post_set_featured_image_column_content', 10, 2 );
if ( ! function_exists( 'themestek_post_set_featured_image_column' ) ) {
function themestek_post_set_featured_image_column($columns) {
$new_columns = array();
foreach( $columns as $key=>$val ){
$new_columns[$key] = $val;
if( $key=='title' ){
$new_columns['themestek_featured_image'] = esc_html__( 'Featured Image', 'liviza' );
}
}
return $new_columns;
}
}
if ( ! function_exists( 'themestek_post_set_featured_image_column_content' ) ) {
function themestek_post_set_featured_image_column_content( $column, $post_id ) {
if( $column == 'themestek_featured_image' ){
if ( has_post_thumbnail($post_id) ) {
the_post_thumbnail('thumbnail');
} else {
echo '<img src="' . esc_attr(TSTE_URI) . '/images/admin-no-image.png" />';
}
}
}
}