Limit characters in codefusion atom feed

  • Unknown's avatar

    Hi everyone, I’m using this code to display a wordpress atom in a codefusion website, but i need to limit the characters displayed in content, because is displaying all content

    anyone know how to limit this content?

    Thanks for you attention

    <cftry>
    <cfhttp url="http://grupomopi.com.br/aconteceu-barra/feed/atom/" method="GET" resolveurl="No" >
    </cfhttp>
    <cfset blog_xml=XMLParse(cfhttp.FileContent)>
    <cfoutput>
    <cfset displayChar="10">
    <cfloop index="x" from="1" to="10">

  • <span class="titulo-noticia">#blog_xml.feed.entry[x].title.xmlText#</span>
    #blog_xml.feed.entry[x].content.xmlText#
  • </cfloop>
    </cfoutput>
    <cfcatch>
    </cfcatch>
    </cftry>

    The blog I need help with is: (visible only to logged in users)