Understood. But... now I'm confused:
- Code: Select all
if ( $PIVOTX['weblogs']->get('', 'rss_full')==0) {
// don't put anything in the content.
$content="";
$description = trim($introduction);
if (strlen($body)>5) {
$description .= makeMoreLink($entry, '', array('html' => true));
$summary .= ' ...';
}
} else {
// put the introduction and body in the content..
$content = trim(str_replace(" "," ", ($introduction.$body)));
$description = trim($introduction.$body);
}
It appears my web-log is doing what comes after the 'else' 100% of the time (i.e. "put the introduction and body in the content.")
while what I want it to do is what the first parts seems to be doing... trims the introduction and then creates a 'more link...' .
What I haven't been able to puzzle out yet is this:
$PIVOTX['weblogs']->get('', 'rss_full')==0
How do I get that to return a 'true'?
because if I can make THAT happen, I should get exactly what I want.
This seems to imply that there might be an 'rss_full' setting on my weblogs...
...and now, I've found it.
So all this just to discover that the answer is "unclick the box in your weblog that says 'create full feeds.'" (Which I think was clicked by default)
But hey, I've learned something.
