Hello
I am displaying blog entry (last 3) in my home page .its working perfectly,
the only problem is when I enter a Image in my blog entry then images are not shown in homepage.
I have limited the number of word to be displayed in homepage as 10,no matter how much i increase the word count ,image is never displayed in homepage.
Please help me out in displaying images in homepage,
My code is
in homepage .php
function LatestNews($number=3) {
$holder = DataObject::get_one('BlogHolder', "Title = 'News'");
return DataObject::get('BlogEntry', "ParentID = {$holder->ID}","Created DESC", false, $number);
}
in template homepage.ss
<% control LatestNews %>
<p><a href="$Link">$Title</a><br>
$Content.LimitWordCount(10) </p>
<% end_control %>
thank you in advance