- 
	
	Henry Wright replied to the topic [Resolved] Create users Pages in the forum How-to & Troubleshooting 11 years, 2 months ago Good point @danbp @bloodslayer, you’d need to be logged in as ‘editor’ or upwards (admin or super admin) for my example above to work. 
- 
	
	Henry Wright replied to the topic [Resolved] Create users Pages in the forum How-to & Troubleshooting 11 years, 2 months ago Hi @bloodslayer wp_insert_post()is a function provided by WordPress which lets developers add pages to the database without the need to access the WP admin area.So, as an example, you could use it like this: $post = array([Read more]
 'post_content' => 'This is some content',
 'post_name' => 'this-is-the-page-slug',
 'post_title' => 'I am the…
	@bloodslayer
	Active 11 years, 2 months ago