Problem with wp_insert_post
-
Hello, im very new in building WP Plugins.
I want to build a plugin that changes the title and the content before posting, but i have a problem with wp_insert_post. When i run this function, the script keeps running until Apache crashes (i think is an infinite loop).
This is the code:
function one($post_id, $post) { $post->post_title = "new title"; $post->post_content = "new comment"; wp_insert_post($post); } add_action("publish_post", "one", 1, 2);
Any ideas?
Kind regards.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Problem with wp_insert_post’ is closed to new replies.