Added wp_insert_user function
Showing
2 changed files
with
5 additions
and
1 deletions
| ... | @@ -133,4 +133,9 @@ function _is_post_revision() { | ... | @@ -133,4 +133,9 @@ function _is_post_revision() { |
| 133 | $params = func_get_args(); | 133 | $params = func_get_args(); |
| 134 | return call_user_func_array('wp' . __FUNCTION__, $params); | 134 | return call_user_func_array('wp' . __FUNCTION__, $params); |
| 135 | } | 135 | } |
| 136 | |||
| 137 | function _insert_user() { | ||
| 138 | $params = func_get_args(); | ||
| 139 | return call_user_func_array('wp' . __FUNCTION__, $params); | ||
| 140 | } | ||
| 136 | ?> | 141 | ?> | ... | ... |
-
Please register or sign in to post a comment