18/05/2012, 22:22
|
| | | Fecha de Ingreso: junio-2007
Mensajes: 35
Antigüedad: 17 años, 6 meses Puntos: 0 | |
Respuesta: Solucionado Efectivamente, el problema estaba en el autosave.
para solucinarlo, basta con 2 lineas:
function save_texto(){ if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE )
return $post_id;
global $post;
update_post_meta($post->ID, "contenido", $_POST["contenido"]);
} |