Quantcast
Channel: Wordpress API - Developer Code Book » wordpress tutorial
Viewing all articles
Browse latest Browse all 6

How to create pages programmatically in wordpress

$
0
0

Creating the pages by using script or in wordpress is very easy. Many times we need to create the default page or post in wordpress. You just need to the following code snippet in functions.php file or your can put following code in your plugin file.

If you are the wordpress plugin or theme developer then following code sample is rally useful to create the empty post or page in wordpress.

global $user_ID;
$page['post_type']    = 'page';
$page['post_content'] = 'Put your page content here';
$page['post_parent']  = 0;
$page['post_author']  = $user_ID;
$page['post_status']  = 'publish';
$page['post_title']   = 'Your Page Title';
$page = apply_filters('yourplugin_add_new_page', $page, 'teams');
$pageid = wp_insert_post ($page);


Viewing all articles
Browse latest Browse all 6

Trending Articles