Blender: Mixamo uploaded model texture is orange fix

Is your FBX model uploaded to Mixamo and modeled in Blender orange colored?
This happened to me because I had a temporary Diffuse color setup. You have to reset the Base color inside Principled BSDF or whichever node you are using.

Step 1) Unlink the connection between Color and Base Color.
Step 2) Reset Base color to white/default value.
Step 3) Re-connect Texture Image Color to Principled BSDF Color.
Step 4) Re-upload FBX to Mixamo and the texture should be proper.

Blender: Lock objects from being selectable

You’ve imported a reference image and was happy until you accidentally selected it a million times. You can show the option to enable or disable selection of objects.

1.) Select the filter button on the object hierarchy window
2.) Click the arrow to enable
3.) Now you can click the Arrow in the hierarchy to enable & disable

WordPress: Adding last modified date to Twenty Seventeen

How to add Post’s last modified date to the Twenty Seventeen theme.

Step 1.) Add custom style for text color
/wp-content/themes/twentyseventeen/style.css

/* Change to fit your needs */
.entry-date.published {
    color: #e1e1e1;
}
.modified-date {
    color: #9ecbff;
    margin-left: 8px;
    font-style: italic;
}

/* Add a subtle separator */
.date-separator {
    margin: 0 5px;
    color: #666;
}


Step 2.) Modify function twentyseventeen_time_link()
/wp-content/themes/twentyseventeen/inc/template-tags.php

if ( ! function_exists( 'twentyseventeen_time_link' ) ) :

function twentyseventeen_time_link() {
    $modified_time = get_the_modified_time('U');
    $posted_time = get_the_time('U');
    
    if ($modified_time > $posted_time) {
        // Format for published + modified date with better spacing and structure
        $time_string = sprintf(
            '<time class="entry-date published">%1$s</time><span class="modified-date">Updated: %2$s</span>',
            get_the_date(),
            get_the_modified_date()
        );
    } else {
        // Format for published date only
        $time_string = sprintf(
            '<time class="entry-date published">%1$s</time>',
            get_the_date()
        );
    }

    // Wrap the time string in a link, and preface it with 'Posted on'.
    return sprintf(
        '<span class="screen-reader-text">%1$s</span><a href="%2$s" rel="bookmark">%3$s</a>',
        _x('Posted on', 'post date', 'twentyseventeen'),
        esc_url(get_permalink()),
        $time_string
    );
}
endif;