/**
 * Add a "Featured Image" column to the Pages list in WordPress.
 */
function add_featured_image_column_to_pages( $columns ) {
    // Insert a new column labeled 'Featured Image'
    $columns['featured_thumb'] = __( 'Featured Image', 'your-textdomain' );
    return $columns;
}

/**
 * Display the featured image in our custom column.
 */
function display_featured_image_column_for_pages( $column, $post_id ) {
    if ( 'featured_thumb' === $column ) {
        // Get the ID of the featured image
        $thumbnail_id = get_post_thumbnail_id( $post_id );

        // If there's a featured image, display it (thumbnail size).
        if ( $thumbnail_id ) {
            $thumbnail = wp_get_attachment_image_src( $thumbnail_id, 'thumbnail' );
            if ( $thumbnail ) {
                echo '<img src="' . esc_url( $thumbnail[0] ) . '" width="60" height="60" style="object-fit:cover;" />';
            }
        } else {
            echo __( 'No featured image', 'your-textdomain' );
        }
    }
}
add_filter( 'manage_pages_columns', 'add_featured_image_column_to_pages' );
add_action( 'manage_pages_custom_column', 'display_featured_image_column_for_pages', 10, 2 );
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//wasmachine.com/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://wasmachine.com/post-sitemap1.xml</loc>
		<lastmod>2025-08-01T01:02:33+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://wasmachine.com/post-sitemap2.xml</loc>
		<lastmod>2025-08-01T01:02:32+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://wasmachine.com/page-sitemap.xml</loc>
		<lastmod>2025-05-06T13:36:26+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Rank Math SEO Plugin (c) Rank Math - rankmath.com -->