wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



set_post_type › WordPress Function

Seit2.5.0
Veraltetn/v
set_post_type ( $post_id = 0, $post_type = 'post' )
Parameter: (2)
  • (int) $post_id Optional. Post ID to change post type. Default 0.
    Erforderlich: Nein
    Standard:
  • (string) $post_type Optional. Post type. Accepts 'post' or 'page' to name a few. Default 'post'.
    Erforderlich: Nein
    Standard: 'post'
Gibt zurück:
  • (int|false) Amount of rows changed. Should be 1 for success and 0 for failure.
Definiert in:
Codex:

Updates the post type for the post ID.

The page or post cache will be cleaned for the post ID.


Quellcode

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;
}