BaseQuatro
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [MP6] Icons and SubmenuChrome Last Version in Windows 7
http://snag.gy/dQ3Vq.jpgForum: Plugins
In reply to: [WooCommerce MultiBank] account number optionYou should insert the account number in Customer Message.
As woocommerce 2.0 didn’t updated this option we should update the module asap.Forum: Plugins
In reply to: Custom Function When Add Usernow looking functions to remove category and page when deleting user…
Forum: Plugins
In reply to: Custom Function When Add UserEnded up with this, hope it helps someone.
Add to functions.php of your theme
add_action('user_register','my_function'); function my_function($user_id){ $user_info = get_userdata($user_id); $username=$user_info->user_login; // create a category with username wp_create_category( $username ); // create page with username and theme? $my_page = array( 'post_title' => $username, 'post_content' => '[list category='/$username/']', 'post_status' => 'publish', 'post_type' => 'page', 'post_author' => 1, 'post_parent' => 105, 'post_status' => 'private', ); $newPageID = wp_insert_post( $my_page ); update_post_meta($newPageID, "_wp_page_template", "cliente-portal.php"); }
Viewing 4 replies - 1 through 4 (of 4 total)