Switch language

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




set_post_type [ WordPress Function ]

set_post_type ( $post_id = 0, $post_type = 'post' )
Parameter:
  • (int) $post_id Post ID to change post type. Not actually optional.
  • (string) $post_type Optional, default is post. Supported values are 'post' or 'page' to name a few.
Nutzt:
  • $wpdb
Gibt zurück:
  • (int) Amount of rows changed. Should be 1 for success and 0 for failure.
Definiert in:



Updates the post type for the post ID.

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

Source


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

Beispiele [ wp-snippets.com ]

Top Google Suchergebnisse

Mehr ...

Nutzerduskussionen [ wordpress.org ]

0 Nutzerkommentare

Noch keine. Sei der Erste!

Neu hinzufügen ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics