//add_filter('comment_text', 'plugin_bbcode_comment');
2) if you would like to enable BBCode in entry titles, edit the file "fp-plugins/bbcode/plugin.bbcode.php" and add the following line:
add_filter('the_title', 'BBCode', 1);
then edit the file "fp-plugins/lastentries/plugin.lastentries.php" and make the following changes to the block of code:
while ($q->hasmore()) {
list($id, $entry) = $q->getEntry();
$link = get_permalink($id);
$entry_subject = plugin_bbcode_comment($entry['subject']);
$string .='- ';
$admin = BLOG_BASEURL . "admin.php?p=entry&entry=";
if (user_loggedin()) // if loggedin prints a "edit" link
$string .= "[".$lang['plugin']['lastentries']['edit']."]";
$string .= "{$entry_subject}
\n";
$count++;
}
"url" & "color" didn't work.
Posted By: NoWhereMan that's howit issupposed to work
$string = apply_filters('comment_text', $string));
bye Posted By: lantacaI would like to add some buttons to the standard flatpress, without plugin to do this.
It looks like you're new here. If you want to get involved, click one of these buttons!