Bonjour… Je vais répondre en anglais pour tous…
I know that the doc is not full…but if you read the code source after line #360, you can see the shortcode’s parameters ‘as default’ :
/**
*
* shortcode call of function post in post
*
* @ updated 0.9.4
*
*
*/
function xi_postinpost_func ( $atts, $content = '' ) {
$arr_result = shortcode_atts(array('query'=>'','showposts'=>1,
'showtitle'=>1,'showexcerpt'=>1,'showcontent'=>0,
'beforeall'=>'<div class="xi_postinpost">', 'afterall'=>'</div>',
'beforeeach'=>'', 'aftereach'=>'', // 0.9.4
'beforetitle'=>'<h4 class="xi_postinpost_title">', 'aftertitle'=>'</h4>',
'beforeexcerpt'=>'<object class="xi_postinpost_excerpt">', 'afterexcerpt'=>'</object>',
'beforecontent'=>'<object class="xi_postinpost_content">', 'aftercontent'=>'</object>',
'featuredimage' => 0, 'featuredimageaslink' => 0, 'featuredimagesize' => 'thumbnail',
'read' => 'Read…',
'from'=>'','to'=>'','expired'=>''
In your case, by default you must see title and excerpt ( if exists) … to change add parameter showcontent= »1″ to see content..
Remember that to have a page, the query_tag is not ‘p=’ but ‘page_id=’…
All the wp_query parameters are possible…
Allez amusez-vous bien !
Michel