Dans mes billets, je me sers de la fonction « Extrait » pour gérer la présentation. En conséquence mes flux rss ne contiennent que l’extrait et pas tout le billet.
Voici comment y remédier.

La solution réside dans la modification des fichiers atom.xml et rss.xml. Ils sont directement modifiable depuis l’éditeur de thème.
(Tableau de bord > Apparence du blog > Editeur de thème)

Fichier atom.xml

  • Avant:
     <content type="html">       <!-- # Entry with an excerpt -->       <tpl:EntryIf extended="1"> 	   {{tpl:EntryExcerpt absolute_urls="1" encode_xml="1"}} 	   &lt;p&gt;&lt;a href="{{tpl:EntryURL}}"&gt;{{tpl:lang Continue reading}}&lt;/a&gt;&lt;/p&gt;       </tpl:EntryIf>       <!-- # Entry without excerpt -->       <tpl:EntryIf extended="0"> 	   {{tpl:EntryContent absolute_urls="1" encode_xml="1"}}       </tpl:EntryIf>     </content> 
  • Après:
     <content type="html">       <!-- # Entry with an excerpt -->       <tpl:EntryIf extended="1"> 	   {{tpl:EntryExcerpt absolute_urls="1" encode_xml="1"}} 	   {{tpl:EntryContent absolute_urls="1" encode_xml="1"}}       </tpl:EntryIf>       <!-- # Entry without excerpt -->       <tpl:EntryIf extended="0"> 	   {{tpl:EntryContent absolute_urls="1" encode_xml="1"}}       </tpl:EntryIf>     </content> 

Fichier rss2.xml

  • Avant:
     <description>       <!-- # Entry with an excerpt -->       <tpl:EntryIf extended="1"> 	   {{tpl:EntryExcerpt absolute_urls="1" encode_xml="1"}} 	   &lt;p&gt;&lt;a href="{{tpl:EntryURL}}"&gt;{{tpl:lang Continue reading}}&lt;/a&gt;&lt;/p&gt;       </tpl:EntryIf>       <!-- # Entry without excerpt -->       <tpl:EntryIf extended="0"> 	   {{tpl:EntryContent absolute_urls="1" encode_xml="1"}}       </tpl:EntryIf>     </description> 
  • Après:
     <description>       <!-- # Entry with an excerpt -->       <tpl:EntryIf extended="1"> 	   {{tpl:EntryExcerpt absolute_urls="1" encode_xml="1"}} 	   {{tpl:EntryContent absolute_urls="1" encode_xml="1"}}       </tpl:EntryIf>       <!-- # Entry without excerpt -->       <tpl:EntryIf extended="0"> 	   {{tpl:EntryContent absolute_urls="1" encode_xml="1"}}       </tpl:EntryIf>     </description>