WP_Importer::set_user() WordPress Method
The WP_Importer::set_user() method allows you to set the current user during an import. This is useful if you want to import data from another user into the current user's account.
WP_Importer::set_user( int $user_id ) #
Parameters
- $user_id
(int)(Required)
Return
(int|void)
Source
File: wp-admin/includes/class-wp-importer.php
public function set_user( $user_id ) { if ( is_numeric( $user_id ) ) { $user_id = (int) $user_id; } else { $user_id = (int) username_exists( $user_id ); } if ( ! $user_id || ! wp_set_current_user( $user_id ) ) { fwrite( STDERR, "Error: can not find user\n" ); exit; } return $user_id; }
Expand full source codeCollapse full source codeView on TracView on GitHub