Skip to content

Instantly share code, notes, and snippets.

View sardisson's full-sized avatar

sardisson

View GitHub Profile
@sardisson
sardisson / functions.php
Last active May 26, 2018 05:10 — forked from clreed87/functions.php
Populate image title, alt-text, caption, and description on upload (only for images uploaded via XML-RPC)
<?php
// Do not include the opening php tag.
// Populate image title, alt-text, caption, and description on upload
// but only if upload is via XML-RPC (thanks Colin Walker)
add_action ('xmlrpc_call', 'check_new_attachment' );
function check_new_attachment( $method ) {
if( 'metaWeblog.newMediaObject' === $method ) {
add_action( 'add_attachment', 'crt_set_image_meta' );