Wordpress - Récupérer le contenu d'un article à partir de son ID

ARCHIVE
Dans le cadre du développement de l'extension AutoJblog, j'ai eu besoin de pouvoir récupérer le contenu d'un article à partir de son ID. Voici une fonction qui vous permettra de le faire, simplement : [sourcecode language="php"] function get_article_content($article_id, $output=stdClass){ global $wpdb; $post = $wpdb->get_row( $wpdb->prepare( "SELECT post_content FROM $wpdb->posts WHERE ID = %s AND post_type='post'", $post_ID), $output); return nl2br($post->post_content); } [/sourcecode]
Une question? Une remarque? Un avis? Twittons-en!

When you click on links to various merchants on this site and make a purchase, this can result in this site earning a commission.
Affiliate programs and affiliations include, but are not limited to, the eBay Partner Network and Amazon.