Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/09/2009, 13:46
sandinosaso
 
Fecha de Ingreso: julio-2008
Mensajes: 208
Antigüedad: 15 años, 10 meses
Puntos: 5
Respuesta: Problema al insertar un post con wp_insert_post

Intenta asi

function one($post_id) {
$post = get_post($post_id); // Un Objecto post
$post->post_title = "new title";
$post->post_content = "new comment";
wp_insert_post($post);

}

add_action("publish_post", "one", 1, 2);