Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Re: Modify plugin to give different link style
Nice.
<txp:php>
global $s ;
$category = parse('<txp:category />');
$count = safe_count( 'textpattern',
"(`Category1` = '" . $category . "'"
." OR `Category2` = '" . $category . "')"
." AND `Section` = '" . $s . "'"
." AND `Posted` < now()"
." AND `Status` = '" . STATUS_LIVE . "'"
, 0 ) ;
echo $count ;
</txp:php>
Offline