wpseek.com
A WordPress-centric search engine for devs and theme authors
set_post_type › WordPress Function
Since2.5.0
Deprecatedn/a
› set_post_type ( $post_id = 0, $post_type = 'post' )
Parameters: (2) |
|
Returns: |
|
Defined at: |
|
Codex: |
Updates the post type for the post ID.
The page or post cache will be cleaned for the post ID.Related Functions: get_post_type, get_post_types, get_post_mime_type, register_post_type, get_post_time
Source
function set_post_type( $post_id = 0, $post_type = 'post' ) { global $wpdb; $post_type = sanitize_post_field( 'post_type', $post_type, $post_id, 'db' ); $return = $wpdb->update( $wpdb->posts, array( 'post_type' => $post_type ), array( 'ID' => $post_id ) ); clean_post_cache( $post_id ); return $return; }