wp_insert_post() inserts 2 posts
-
When i run the function wp_insert_post(), it inserts two identical posts instead of one.
By placing echo’s, I have confirmed that the function is not called twice.Here is some of my code:
// Insert Pages $about = array( 'post_type' => 'page', 'post_status' => 'publish', 'post_title' => 'Om webbplatsen', 'post_content' => 'Content More content And even mode content' ); wp_insert_post($about);
You can download my full theme here;
https://www.fristil.se/skal.rar
The wp_insert_posts() is called in functions.php at row 44.Thankful for any help!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘wp_insert_post() inserts 2 posts’ is closed to new replies.