2
¿Devolver $ post_id cuando DOING_AUTOSAVE?
Veo el siguiente patrón una y otra vez, en este sitio y en otros lugares: add_action( 'save_post', 'wpse14169_save_post' ); function wpse14169_save_post( $post_id ) { if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { return $post_id; } // Other code... } ¿Por qué debería volver $post_id? save_postes una acción y se …